forked from WonderlandEngine/api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 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
{
"name": "@wonderlandengine/api",
"version": "1.1.5+playko-patches-1",
"description": "Wonderland Engine's JavaScript API.",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": "./dist/index.js",
"./version.js": "./dist/version.js",
"./decorators.js": "./dist/decorators.js",
"./utils/": "./dist/utils/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WonderlandEngine/api.git"
},
"keywords": [
"webxr",
"wonderland",
"components"
],
"author": "Wonderland GmbH",
"license": "MIT",
"bugs": {
"url": "https://github.com/WonderlandEngine/api/issues"
},
"homepage": "https://github.com/WonderlandEngine/api#readme",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"prebuild": "node write-version.mjs",
"test": "npm run build && npm run test:typecheck && wtr",
"test:watch": "npm run build && wtr --watch",
"test:typecheck": "tsc --project ./test/tsconfig.json --noEmit",
"pretty": "prettier --config ./prettierrc.json --write \"src/**/*.ts\" \"test/**/*.ts\"",
"pretty:check": "prettier --config ./prettierrc.json --check \"src/**/*.ts\" \"test/**/*.ts\"",
"prepublishOnly": "npm run build",
"prepack": "npm run build",
"prepare": "npm run prebuild",
"doc": "typedoc --entryPoints ./src/index.ts --tsconfig tsconfig.json --json ./doc.json --treatWarningsAsErrors"
},
"files": [
"dist/**/*.d.ts",
"dist/**/*.js"
],
"dependencies": {
"@types/webxr": "^0.5.0",
"wasm-feature-detect": "^1.3.0"
},
"devDependencies": {
"@esm-bundle/chai": "^4.3.4-fix.0",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.9",
"@web/dev-server-esbuild": "^0.4.1",
"@web/test-runner": "0.17.0",
"esbuild": "^0.11.14",
"prettier": "^2.8.0",
"typedoc": "^0.23.21",
"typescript": "^4.9.3"
}
}