-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
55 lines (55 loc) · 1.62 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
{
"name": "eureka",
"version": "11.0.0",
"description": "Universal Scratch Extension Loader",
"author": "SimonShiki",
"license": "AGPL-3.0-only",
"private": true,
"engines": {
"node": ">=18"
},
"scripts": {
"prepare": "husky",
"dev": "rollup -wc",
"clean": "del-cli dist",
"typecheck": "tsc --noEmit",
"lint": "eslint --ext .ts,.tsx ./src/",
"lint:fix": "eslint --ext .ts,.tsx --fix ./src/",
"build:js": "rollup -c",
"build": "cross-env NODE_ENV=production run-s typecheck clean build:js",
"test": "jest --config jest.config.mjs",
"test:ui": "cross-env TEST_UI=1 jest --config jest.config.mjs"
},
"dependencies": {
"@babel/runtime": "^7.24.1",
"format-message": "^6.2.4",
"solid-js": "^1.9.3"
},
"devDependencies": {
"@babel/plugin-transform-react-jsx": "^7.23.4",
"@commitlint/cli": "^19.6.1",
"@gera2ld/plaid": "~2.7.0",
"@gera2ld/plaid-rollup": "~2.7.0",
"@rollup/plugin-image": "^3.0.3",
"@unocss/postcss": "^0.65.2",
"@violentmonkey/types": "^0.2.0",
"babel-preset-solid": "^1.9.3",
"commitlint-config-gitmoji": "^2.3.1",
"cross-env": "^7.0.3",
"del-cli": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "8.57.1",
"eslint-plugin-solid": "^0.14.5",
"husky": "^9.1.7",
"read-package-up": "^11.0.0",
"rollup-plugin-serve": "^1.1.1",
"rollup-plugin-userscript": "^0.3.4",
"typescript": "^5.7.2",
"unocss": "^0.65.2",
"@playwright/test": "^1.49.1",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.2"
}
}