-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.33 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
{
"name": "@tamb/gamegrid",
"version": "1.0.0-beta.16",
"description": "",
"main": "dist/main.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"test": "jest",
"test.watch": "jest --watch",
"build": "rollup -c",
"build.safe": "npm run test && npm run build",
"safe.publish": "npm run build.safe && npm publish",
"dev": "rollup -c -w",
"demo": "node clean && npm run build && npm pack && npm start",
"demo.safe": "node clean && npm run build.safe && npm pack && npm start",
"start": "cd demo && npm start",
"lint": "eslint src --ext .js,.ts",
"format": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"rollup": "^4.9.1",
"sass": "^1.69.5",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2"
}
}