-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.35 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
{
"name": "@ffweb/graph",
"version": "2.3.0",
"license": "MIT",
"description": "FF Graph Typescript Foundation Library",
"keywords": [
"typescript",
"graph",
"entity-component-system"
],
"homepage": "https://github.com/framefactory/ff-graph#readme",
"author": {
"name": "Ralph Wiedemeier",
"email": "opensource@framefactory.ch",
"url": "https://github.com/framefactory"
},
"repository": {
"type": "git",
"url": "git+https://github.com/framefactory/ff-graph.git"
},
"bugs": {
"url": "https://github.com/framefactory/ff-graph/issues"
},
"type": "module",
"packageManager": "pnpm@9.12.1",
"files": [
"build/types/**/*",
"build/esm/**/*",
"build/cjs/**/*",
"src/**/*"
],
"exports": {
"./*": {
"types": "./build/types/*",
"import": "./build/esm/*",
"require": "./build/cjs/*"
}
},
"scripts": {
"build": "pnpm build:cjs && pnpm build:esm",
"build:esm": "tsc -b tsconfig.json",
"build:cjs": "tsc -b tsconfig.cjs.json",
"clean": "rm -rf ./build",
"test": "rm -rf ./build/test && tsc -b test && mocha -c --ui tdd build/test/index.js"
},
"dependencies": {
"@ffweb/core": "workspace:*"
},
"devDependencies": {
"@types/chai": "^5.0.0",
"@types/mocha": "^10.0.9",
"chai": "^5.1.1",
"mocha": "^10.7.3",
"typescript": "^5.6.3"
}
}