-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.54 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
{
"name": "pixi-console",
"version": "4.0.0",
"description": "",
"keywords": [],
"main": "dist/pixi-console.js",
"unpkg": "dist/pixi-console.umd.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"author": "Yordan <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/yordan-kanchelov/pixi-console.git"
},
"license": "MIT",
"scripts": {
"lint": "eslint . --ext .ts,.tsx && npx prettier --check **/*.{ts,js,json}",
"prebuild": "rimraf dist",
"build": "cross-env NODE_ENV=production webpack",
"build:watch": "cross-env NODE_ENV=development webpack --watch",
"start": "rollup -c rollup.config.ts -w",
"prepublish": "npm run build",
"prepare": "husky install"
},
"devDependencies": {
"@types/css-font-loading-module": "^0.0.12",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"colors": "^1.4.0",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typedoc": "^0.25.4",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"peerDependencies": {
"pixi.js": "^6.0.0 || ^7.0.0"
}
}