-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.57 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
59
60
{
"name": "xdraw",
"version": "1.0.0",
"description": "The 3D rendering system for Javascript.",
"main": "./lib/main.js",
"types": "./lib/main.d.ts",
"scripts": {
"test": "jest",
"dev": "NODE_OPTIONS=--inspect next",
"lint": "eslint --ext .ts,.tsx --ignore-path .gitignore ./src/",
"lint:fix": "eslint --fix --ext .ts,.tsx --ignore-path .gitignore ./src/"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"json",
"node"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/MikuroXina/xdraw.git"
},
"keywords": [
"rendering"
],
"author": "MikuroXina",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/MikuroXina/xdraw/issues"
},
"homepage": "https://github.com/MikuroXina/xdraw#readme",
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/react": "^17.0.5",
"@types/webgl2": "^0.0.6",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"canvas": "^2.3.1",
"eslint": "^8.4.1",
"eslint-config-next": "^12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.24.0",
"jest": "^27.4.3",
"jest-canvas-mock": "^2.0.0-alpha.3",
"kill-port": "^1.6.0",
"next": "^13.5.0",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ts-jest": "^27.1.1",
"typescript": "^4.2.4"
}
}