-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.48 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
{
"name": "@ludic/ein",
"version": "1.0.2",
"description": "Entity Component System",
"main": "dist/ein.umd.js",
"module": "dist/ein.es.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Ludic/ein.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"directories": {
"example": "example"
},
"exports": {
".": {
"import": "./dist/ein.es.js",
"require": "./dist/ein.umd.js"
}
},
"scripts": {
"dev": "run-p dev:tsc dev:vite",
"dev:vite": "vite build --watch --mode development",
"dev:tsc": "tsc -w --emitDeclarationOnly",
"build:tsc": "tsc",
"build": "vite build",
"build:dev": "vite build --mode development",
"bnt": "npm run build && npm run test",
"examples": "run-p dev:es serve",
"serve": "vite serve ./examples --config vite.config.js",
"test": "ts-mocha -p tests/tsconfig.json tests/**/*.spec.ts",
"test:e2e": "ts-mocha tests/e2e/**/*.spec.ts",
"test:performance": "ts-mocha tests/performance/**/*.spec.ts",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^10.0.1",
"@types/node": "^16.7.1",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"npm-run-all": "^4.1.5",
"ts-mocha": "^10.0.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"dependencies": {
"@vue/reactivity": "^3.2.37",
"vite": "^2.9.13"
}
}