-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 2.46 KB
/
package.json
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
{
"name": "charlotte",
"type": "module",
"version": "0.0.1",
"description": "",
"author": "SimonShiki",
"license": "AGPL-3.0-only",
"private": true,
"engines": {
"node": ">=18"
},
"scripts": {
"prepare": "husky install",
"eureka:init": "cd ./addons/eureka/eureka && pnpm i && pnpm run build",
"hyren:init": "cd ./addons/hyren/hyren && git submodule update --init && cd scratch-render && npm ci && cd .. && npm ci && npm run build:injector",
"l10n:extract": "formatjs extract 'src/**/*.ts*' 'addons/*/*.ts*' --out-file locales/en.json --ignore='**/*.d.ts' --format simple",
"typedoc": "node ./scripts/generate-typedoc.mjs",
"docs:dev": "pnpm run typedoc && vitepress dev docs",
"docs:build": "pnpm run typedoc && vitepress build docs",
"docs:serve": "vitepress serve docs",
"dev": "node ./scripts/generate-addon-manifest.mjs && rollup -wc",
"typecheck": "tsc --watch --noEmit",
"clean": "del-cli dist",
"lint": "eslint --ext .mjs,.ts,.tsx .",
"lint:fix": "eslint --ext .mjs,.ts,.tsx --fix .",
"build:js": "node ./scripts/generate-addon-manifest.mjs && rollup -c",
"build": "cross-env NODE_ENV=production run-s clean build:js"
},
"dependencies": {
"@babel/runtime": "^7.24.1",
"@formatjs/intl": "^2.10.0",
"classnames": "^2.5.1",
"eventemitter3": "^5.0.1",
"solid-js": "^1.8.15"
},
"devDependencies": {
"@babel/plugin-proposal-import-attributes-to-assertions": "^7.24.1",
"@babel/plugin-transform-react-jsx": "^7.23.4",
"@babel/preset-typescript": "^7.23.3",
"@commitlint/cli": "^19.2.0",
"@formatjs/cli": "^6.2.12",
"@gera2ld/plaid": "~2.7.0",
"@gera2ld/plaid-rollup": "~2.7.0",
"@rollup/plugin-image": "^3.0.3",
"@turbowarp/types": "^0.0.12",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"@unocss/postcss": "^0.61.0",
"babel-plugin-formatjs": "^10.5.14",
"babel-preset-solid": "^1.8.16",
"commitlint-config-gitmoji": "^2.3.1",
"cross-env": "^7.0.3",
"del-cli": "^5.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-solid": "^0.13.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.0",
"rollup-plugin-serve": "^1.1.1",
"rollup-plugin-userscript": "^0.3.0",
"typedoc": "^0.25.12",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.3.3",
"unocss": "^0.61.0",
"vitepress": "^1.0.1"
},
"lint-staged": {
"src/**": [
"eslint --fix"
]
}
}