-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.6 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
61
62
63
64
65
66
67
68
69
70
{
"name": "pixi-events-x",
"version": "1.0.0",
"sideEffects": true,
"description": "Extended Federated Events API. Backwards compatible replacement for PixiJS Event System that supports focus and keyboard events.",
"keywords": [
"PixiJS",
"interaction",
"UI",
"events",
"focus",
"keyboard"
],
"exports": {
".": {
"types": "./build/index.d.ts",
"require": "./build/index.cjs",
"import": "./build/index.mjs"
}
},
"main": "./build/index.cjs",
"module": "./build/index.mjs",
"types": "./build/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./build/*",
"./*"
]
}
},
"files": [
"build"
],
"scripts": {
"prepare": "husky install",
"lint": "eslint **/*.{js,mjs,cjs,ts}",
"build": "unbuild",
"dev": "unbuild --stub",
"test": "vitest"
},
"author": "zumm",
"license": "ISC",
"devDependencies": {
"@antfu/eslint-config": "^0.39.0",
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@cspell/eslint-plugin": "^6.31.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"eslint": "^8.41.0",
"husky": "^8.0.3",
"semantic-release": "^21.0.5",
"typescript": "^5.0.4",
"unbuild": "^1.2.1",
"vitest": "^0.31.4"
},
"peerDependencies": {
"@pixi/core": "^7.2.0",
"@pixi/display": "^7.2.0",
"@pixi/events": "^7.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zumm/pixi-events-x.git"
},
"bugs": {
"url": "https://github.com/zumm/pixi-events-x/issues"
}
}