-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.22 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.22 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
{
"name": "@r47onfire/backolon",
"version": "0.0.0",
"private": true,
"description": "homoiconic scripting language",
"keywords": [],
"author": "dragoncoder047",
"exports": {
".": {
"import": "./src/index.ts",
"types": "./src/index.ts"
},
"./plugin": {
"import": "./src/plugin/index.ts",
"types": "./src/plugin/index.ts"
}
},
"scripts": {
"build": "pnpm bun run scripts/build.ts",
"build-for-fuzzer": "pnpm bun run scripts/build-for-fuzzer.ts",
"build:website": "pnpm clean-dist && pnpm clean-docs && . scripts/build-website.sh",
"dev": "pnpm run \"/^dev:.*/\"",
"dev:serve": "python3 -m http.server -d docs",
"dev:watch": "pnpm nodemon -e js,json,ts,css,md,html,bk -i docs -w src -w website -w scripts --exec \"pnpm build:website\"",
"fuzz": "pnpm build-for-fuzzer; ./scripts/fuzz.sh",
"test": "pnpm bun test",
"test:watch": "pnpm test --watch",
"prepare": "pnpm build --minify",
"clean-dist": "rm -rf dist/*",
"clean-docs": "rm -rf docs/*"
},
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/r47onfire/backolon.git"
},
"homepage": "https://r47onfire.github.io/backolon",
"devDependencies": {
"@gitlab-org/jsfuzz": "^1.2.4",
"@to-skills/typedoc": "^0.5.1",
"@types/bun": "^1.3.9",
"@types/jquery": "^4.0.0",
"@types/markdown-it": "^14.1.2",
"@types/markdown-it-attrs": "^4.1.3",
"@types/node": "^25.5.2",
"@types/prismjs": "^1.26.6",
"bun": "^1.3.12",
"jquery": "^4.0.0",
"jquery.terminal": "^2.45.2",
"markdown-it": "^14.1.1",
"markdown-it-attrs": "^4.3.1",
"node-html-parser": "^7.1.0",
"nodemon": "^3.1.14",
"prismjs": "^1.30.0",
"typedoc": "^0.28.18",
"typescript": "^5.6.2"
},
"type": "module",
"pnpm": {
"onlyBuiltDependencies": [
"bun",
"esbuild"
]
},
"dependencies": {
"lib0": "^0.2.117",
"lz-string": "^1.5.0",
"resurrect-esm": "^2.0.6"
}
}