-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
76 lines (76 loc) · 2.13 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
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@playcanvas/editor-api",
"version": "1.1.4",
"author": "PlayCanvas <[email protected]>",
"homepage": "https://github.com/playcanvas/editor-api#readme",
"description": "The PlayCanvas Editor API",
"keywords": [
"playcanvas",
"editor",
"api"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bugs": {
"url": "https://github.com/playcanvas/editor-api/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/playcanvas/editor-api.git"
},
"files": [
"dist/index.d.ts",
"dist/index.js",
"dist/index.mjs",
"README.md",
"LICENSE.md"
],
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/eslint-parser": "^7.23.3",
"@babel/preset-env": "^7.23.8",
"@playcanvas/eslint-config": "2.0.8",
"@playcanvas/observer": "^1.6.6",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^12.1.2",
"@types/sharedb": "^3.2.1",
"@typescript-eslint/parser": "^8.19.1",
"chai": "^4.4.1",
"eslint": "^9.16.0",
"globals": "^15.14.0",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-mocha": "2.0.1",
"karma-spec-reporter": "^0.0.36",
"mocha": "^10.2.0",
"ot-text": "github:playcanvas/ot-text",
"publint": "^0.3.2",
"rollup": "^4.9.5",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-polyfill-node": "^0.13.0",
"sharedb": "^3.2.1",
"sinon": "^17.0.1",
"typedoc": "^0.26.5",
"typedoc-plugin-extras": "^3.1.0",
"typedoc-plugin-mdn-links": "^3.2.6",
"typescript": "^5.3.3"
},
"scripts": {
"test": "karma start test/karma.conf.js --single-run",
"test:debug": "karma start test/karma.conf.js --single-run=false --browsers Chrome",
"build": "rollup -c",
"watch": "rollup -c -w",
"docs": "typedoc",
"lint": "eslint src rollup.config.mjs",
"lint:fix": "eslint src rollup.config.mjs --fix",
"type:check": "tsc --noEmit",
"publint": "publint"
},
"engines": {
"node": ">=18.0.0"
}
}