-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.25 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
{
"name": "heks",
"version": "2.7.5",
"description": "A game development framework in TypeScript",
"repository": "git://github.com/bakkerjoeri/heks.git",
"author": "Joeri Bakker <[email protected]>",
"license": "MIT",
"exports": "./dist/index.js",
"type": "module",
"engines": {
"node": ">=14.16"
},
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"dev": "rm -rf dist && rollup --config rollup.config.js --watch",
"build": "rm -rf dist && rollup --config rollup.config.js",
"preversion": "npm run test",
"version": "npm run build && git add -A dist",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@types/jest": "^29.2.2",
"@types/jsdom": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"canvas": "^2.10.2",
"eslint": "^8.26.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"jsdom": "^20.0.2",
"prettier": "^2.7.1",
"rollup": "^3.2.5",
"ts-jest": "^29.0.3",
"ts-jest-resolver": "^2.0.0",
"typescript": "^4.8.4"
},
"dependencies": {
"dotspace": "^1.4.0"
}
}