-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.32 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/core",
"version": "2.2.6",
"license": "MIT",
"description": "FF Core Typescript Foundation Library",
"keywords": [
"typescript",
"types",
"math",
"color",
"graphics",
"animation"
],
"homepage": "https://github.com/framefactory/ff-core#readme",
"author": {
"name": "Ralph Wiedemeier",
"email": "[email protected]",
"url": "https://github.com/framefactory"
},
"repository": {
"type": "git",
"url": "git+https://github.com/framefactory/ff-core.git"
},
"bugs": {
"url": "https://github.com/framefactory/ff-core/issues"
},
"type": "module",
"packageManager": "[email protected]",
"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"
},
"devDependencies": {
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"chai": "^5.1.2",
"mocha": "^11.0.1",
"typescript": "^5.7.2"
}
}