forked from unity-atoms/unity-atoms
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.57 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
{
"name": "com.unity-atoms.unity-atoms",
"displayName": "Unity Atoms",
"version": "4.4.3",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unity-atoms/unity-atoms.git"
},
"unity": "2018.3",
"description": "Tiny modular pieces utilizing the power of Scriptable Objects",
"keywords": [
"scriptable objects",
"unity"
],
"category": "Unity",
"scripts": {
"publish:all": "npm run publish:core && npm run publish:mobile && npm run publish:scene && npm run publish:tags && npm run publish:ui && npm run publish:mono && npm run publish:base && npm run publish:fsm && npm run publish:input",
"publish:core": "npm publish ./Packages/Core",
"publish:fsm": "npm publish ./Packages/FSM",
"publish:base": "npm publish ./Packages/BaseAtoms",
"publish:mobile": "npm publish ./Packages/Mobile",
"publish:scene": "npm publish ./Packages/SceneMgmt",
"publish:tags": "npm publish ./Packages/Tags",
"publish:ui": "npm publish ./Packages/UI",
"publish:mono": "npm publish ./Packages/MonoHooks",
"publish:input": "npm publish ./Packages/InputSystem",
"generate:docs": "node scripts/generateDocs.js",
"generate:docs:verbose": "node scripts/generateDocs.js --verbose"
},
"files": [
"/LICENSE.md",
"/LICENSE.md.meta",
"/README.md",
"/README.md.meta",
"/package.json",
"/package.json.meta",
"/Packages",
"/Packages.meta"
],
"devDependencies": {
"rimraf": "^3.0.0",
"xml2js": "^0.4.22",
"yargs": "^14.2.0"
}
}