forked from M-CreativeLab/jsar-dom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.91 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
{
"name": "@yodaos-jsar/dom",
"version": "0.3.0-alpha.0",
"description": "The DOM implementation for JSAR runtime",
"main": "index.js",
"type": "module",
"scripts": {
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"test:ci": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --ci --reporters=default --collectCoverage --coverageDirectory=\"./coverage\"",
"headless-bin": "ts-node ./src/impl-headless.ts"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/M-CreativeLab/jsar-dom.git"
},
"keywords": [
"dom",
"jsar"
],
"author": "Yazhong Liu <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/M-CreativeLab/jsar-dom/issues"
},
"homepage": "https://github.com/M-CreativeLab/jsar-dom#readme",
"dependencies": {
"@babel/core": "^7.22.6",
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"@babel/plugin-transform-typescript": "^7.23.4",
"@babylonjs/loaders": "^6.10.0",
"css": "^3.0.0",
"css-parse": "^2.0.0",
"cssstyle": "^3.0.0",
"domexception": "^4.0.0",
"fast-xml-parser": "^4.3.2",
"meshoptimizer": "^0.20.0",
"metaviewport-parser": "^0.3.0",
"nwsapi": "^2.2.7",
"symbol-tree": "^3.2.4",
"time-ranges": "^0.1.0",
"xml-name-validator": "^5.0.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/babel__core": "^7.20.1",
"@types/css": "^0.0.37",
"@types/cssstyle": "^2.2.3",
"@types/domexception": "^4.0.2",
"@types/node": "^20.3.3",
"@types/nwsapi": "^2.2.5",
"@types/symbol-tree": "^3.2.4",
"@types/xml-name-validator": "^4.0.3",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typescript": "^5.3.2",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4"
},
"peerDependencies": {
"babylonjs": "^6.10.0"
}
}