-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.1 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "blop-language",
"version": "1.2.0",
"type": "module",
"description": "Blop language is JavaScript-like language for the web",
"main": "src/index.js",
"exports": {
".": "./src/index.js",
"./runtime": "./src/runtime.js",
"./ssr": "./src/renderToString.js",
"./vite": "./src/vite.js",
"./vitest": "./src/vitest.js"
},
"vite-plugin": "src/vite.js",
"vitest-plugin": "src/vitest.js",
"bin": {
"blop": "./src/blop.js"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"parser": "node src/generateParser",
"start": "vite",
"dev": "vite",
"ssr": "node src/blop.js -i example/server.blop | node --input-type=module",
"build:app": "vite build",
"preview": "vite preview",
"distribute": "vite build",
"debug": "BLOP_DEBUG=true vite",
"linter": "./scripts/sync-linter.sh",
"link-extensions": "ln -s $PWD/vscode/blop-linter ~/.vscode/extensions/batistebieler.blop-linter-1.0.35 && ln -s $PWD/vscode/blop-syntax-highlighter ~/.vscode/extensions/batistebieler.blop-syntax-highlighter-1.0.14",
"build": "npm run parser && npm run test && npm run linter && npm run build:app",
"build-ci": "npm run parser && npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/batiste/blop-language.git"
},
"keywords": [
"parser",
"grammar",
"language"
],
"author": "Batiste Bieler",
"license": "ISC",
"bugs": {
"url": "https://github.com/batiste/blop-language/issues"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-ie11": "^1.0.0",
"eslint-plugin-import": "^2.32.0",
"express": "^5.2.1",
"glob": "^13.0.6",
"happy-dom": "^20.6.1",
"jsdom": "^27.0.1",
"meta-parser-generator": "==1.2.0",
"sass": "^1.97.3",
"vite": "^7.3.1",
"vitest": "^3.2.4"
},
"homepage": "https://github.com/batiste/blop-language",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^10.0.1",
"shiki": "^4.0.1",
"snabbdom": "==3.6.3",
"source-map": "^0.7.6"
}
}