-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.52 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
{
"name": "pit-js",
"version": "4.1.1",
"description": "Pollable Input",
"module": "examples/build/PIT.module.js",
"main": "examples/build/PIT.js",
"source": "src/index.js",
"files": [
"examples/build",
"LICENSE",
"src",
"types",
"package.json"
],
"scripts": {
"start": "rollup -w -c",
"build": "rollup -c",
"preinstall": "yarn config-hooks",
"config-hooks": "git config core.hooksPath git_hooks",
"create-tag": "node tasks/app/create_tag.mjs",
"fix-syntax": "standardx --fix",
"generate-types": "npx -p typescript tsc src/components/sdf_text/SDFTextBatch.js --declaration --allowJs --emitDeclarationOnly --outDir types",
"upload": "yarn build && npm publish && yarn create-tag"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ohzinteractive/pit.git"
},
"keywords": [
"input",
"ohzi",
"pollable",
"polling",
"game",
"controls",
"mouse",
"touch",
"mobile",
"pointer"
],
"author": "OHZI Interactive Studio",
"license": "MIT",
"bugs": {
"url": "https://github.com/ohzinteractive/pit/issues"
},
"homepage": "https://github.com/ohzinteractive/pit",
"standardx": {
"ignore": [
"/examples/**/*",
"rollup.config.mjs"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"rollup": "4.1.4",
"rollup-plugin-glslify": "^1.3.1",
"standardx": "^7.0.0",
"typescript": "4.4.4"
}
}