-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.31 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.31 KB
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
{
"name": "@tulib/tulip",
"version": "0.0.0",
"main": "./index.ts",
"exports": "./index.ts",
"homepage": "https://github.com/tulips/tulip",
"contributors": [
{
"name": "pablo",
"url": "https://github.com/pagoru"
},
{
"name": "alberto",
"url": "https://github.com/alqubo"
}
],
"dependencies": {
"@babel/helper-hoist-variables": "^7.24.7",
"@tulib/vite-tulip-plugin": "1.0.15",
"howler": "2.2.4",
"p2": "0.7.1",
"pixi.js": "8.7.3"
},
"devDependencies": {
"@babel/core": "7.26.8",
"@babel/preset-env": "7.26.8",
"@babel/preset-typescript": "7.26.0",
"@tsd/typescript": "5.6.3",
"@types/howler": "2.2.12",
"@types/jest": "29.5.14",
"@types/p2": "0.7.45",
"babel-jest": "29.7.0",
"jest": "29.7.0",
"jest-tsd": "^0.2.2",
"prettier": "3.4.2"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prettier:check": "prettier . --check",
"prettier": "prettier . --write",
"link": "yarn link",
"start:example": "cd examples/example && yarn start"
},
"exclude": [
"**/*.test-d.ts"
],
"jest": {
"testRegex": ".test.ts",
"verbose": true,
"coverageReporters": [
"json",
"html"
]
},
"packageManager": "yarn@4.6.0"
}