-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.01 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
{
"name": "pixi-ex",
"version": "0.5.0",
"description": "Pixi extended - Utility library for Pixi.js",
"main": "dist/index.js",
"files": [
"/dist"
],
"author": "Simon Lagos <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sajmoni/pixi-ex.git"
},
"scripts": {
"go": "npm run build && preview && npm test",
"release": "npm run build && np --no-tests",
"test": "ava",
"app": "npm run build && preview && cd app && npm run dev",
"build": "rm -rf dist && tsc"
},
"ava": {
"require": [
"esbuild-runner/register"
],
"extensions": [
"ts"
]
},
"prettier": {
"trailingComma": "all",
"semi": false,
"singleQuote": true
},
"devDependencies": {
"ava": "5.1.0",
"esbuild-runner": "2.2.2",
"np": "7.6.2",
"package-preview": "4.0.0",
"pixi.js": "7.0.4",
"prettier": "2.7.1",
"typescript": "4.9.3"
},
"peerDependencies": {
"pixi.js": "7.x"
}
}