-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
57 lines (57 loc) · 2.07 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
{
"private": true,
"name": "solid-panorama",
"version": "0.1.0",
"author": "RobinCode <[email protected]>",
"license": "MIT",
"scripts": {
"watch": "rollup -c -w --bundleConfigAsCjs",
"build": "rollup -c --bundleConfigAsCjs",
"build:runtime": "cross-env OnlyBuildRuntime=yes npm run build",
"build:jsx": "cross-env OnlyBuildJSX=yes npm run build",
"build:macros": "cross-env OnlyBuildMacros=yes npm run build",
"build:polyfill": "cross-env OnlyBuildPolyfill=yes npm run build",
"lint:prettier": "prettier --check .",
"write-prettier": "prettier --write .",
"test": "jest --verbose",
"test-update": "jest --verbose --updateSnapshot"
},
"dependencies": {
"@babel/core": "^7.26.0",
"@babel/helper-module-imports": "^7.25.9",
"@babel/plugin-syntax-jsx": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@babel/types": "^7.26.5",
"@moddota/panorama-types": "^1.34.0",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-typescript": "^12.1.2",
"@types/babel-plugin-macros": "^3.1.3",
"@types/babel__core": "^7.20.5",
"@types/jest": "^29.5.14",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.6",
"babel-plugin-macros": "^3.1.0",
"cross-env": "^7.0.3",
"easy-keyvalues": "^1.2.7",
"html-entities": "^2.5.2",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"rollup": "^4.30.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-terser": "^7.0.2",
"solid-js": "^1.9.4",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/babel__helper-module-imports": "^7.18.3"
}
}