-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.11 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.11 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
{
"private": true,
"name": "solid-panorama",
"version": "0.1.0",
"author": "RobinCode <xv.robincode@gmail.com>",
"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",
"update_deps": "node update_deps.mjs"
},
"dependencies": {
"@babel/core": "^7.28.5",
"@babel/helper-module-imports": "^7.27.1",
"@babel/plugin-syntax-jsx": "^7.27.1",
"@babel/preset-env": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@babel/types": "^7.28.5",
"@moddota/panorama-types": "^1.38.1",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/babel-plugin-macros": "^3.1.3",
"@types/babel__core": "^7.20.5",
"@types/jest": "^30.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "^25.0.3",
"babel-plugin-macros": "^3.1.0",
"cross-env": "^10.1.0",
"easy-keyvalues": "^1.2.7",
"html-entities": "^2.6.0",
"jest": "^30.2.0",
"prettier": "^3.7.4",
"rollup": "^4.53.5",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-terser": "^7.0.2",
"solid-js": "^1.9.10",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@jest/globals": "^30.2.0",
"@types/babel__helper-module-imports": "^7.18.3"
}
}