-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.22 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@typhonjs-fvtt/fvttdev",
"description": "Provides a zero config CLI build tool for Foundry VTT modules & systems based on Rollup and Oclif",
"version": "0.0.18",
"author": "Michael Leahy <[email protected]> (https://github.com/typhonrt)",
"type": "module",
"main": "src/index.js",
"module": "src/index.js",
"bin": {
"fvttdev": "./bin/run.js"
},
"exports": {
".": "./src/index.js",
"./package.json": "./package.json",
"./types": "./types/index.d.ts"
},
"contributors": [
"Michael Leahy <[email protected]> (https://github.com/typhonrt)"
],
"dependencies": {
"@typhonjs-fvtt/validate-manifest": "0.0.0",
"@typhonjs-oclif-rollup/plugin-bundle-core": "^0.0.4",
"@typhonjs-oclif/core": "^0.0.21",
"@typhonjs-oclif/errors": "^0.0.0",
"@typhonjs-utils/better-ajv-errors": "^0.0.9",
"fs-jetpack": "^4.0.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.0",
"@typhonjs-utils/build-test": "^0.1.0",
"fancy-test": "^1.4.10",
"rollup": "^2",
"rollup-plugin-dts": "^3.0.0",
"unique-names-generator": "^4.0.0"
},
"engines": {
"node": ">=14.0.0"
},
"types": "./types/index.d.ts",
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src",
"/types"
],
"homepage": "https://github.com/typhonjs-fvtt/fvttdev#readme",
"keywords": [
"typhonjs",
"fvttdev",
"rollup",
"bundler",
"Foundry VTT"
],
"license": "MPL-2.0",
"oclif": {
"commands": "./src/commands",
"helpClass": "@typhonjs-oclif/core/DynamicCommandHelp",
"hooks": {
"init": [
"@typhonjs-oclif/core/hooks/init",
"./src/hooks/init/init",
"./src/hooks/init/bundle",
"./src/hooks/init/validate-manifest"
]
},
"bin": "fvttdev",
"plugins": [
"@typhonjs-oclif-rollup/plugin-bundle-core"
]
},
"bugs": "https://github.com/typhonjs-fvtt/fvttdev/issues",
"repository": "github:typhonjs-fvtt/fvttdev",
"scripts": {
"run-debug-help-bundle": "env DEBUG=* ./bin/run.js bundle --help",
"run-debug-help-validate:manifest": "env DEBUG=* ./bin/run.js validate:manifest --help",
"run-debug-bundle": "env DEBUG=* ./bin/run.js bundle",
"run-bundle": "./bin/run.js bundle",
"run-bundle-1entry": "./bin/run.js bundle -e test --cwd=./test/fixture/demo-1entry",
"run-bundle-1entry-ts": "./bin/run.js bundle -e test --cwd=./test/fixture/demo-1entry-ts",
"run-bundle-2entry": "./bin/run.js bundle -e test --cwd=./test/fixture/demo-2entry",
"run-bundle-node-resolve-babel": "./bin/run.js bundle -e test --cwd=./test/fixture/demo-node-resolve-babel",
"run-validate-manifest-help": "./bin/run.js validate:manifest --help",
"run-validate-manifest": "./bin/run.js validate:manifest",
"run-validate-manifest-0": "./bin/run.js validate:manifest --cwd=./test/fixture/demo-0",
"eslint": "eslint .",
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint .",
"prepublishOnly": "npm run test && oclif-dev manifest",
"test": "c8 --reporter=lcov --reporter=text-summary mocha -color \"test/src/**/*.test.js\" --timeout 15000",
"types": "npx -p typescript tsc --project tsconfig.types.json && rollup --config rollup.config.types.js"
}
}