-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.41 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.41 KB
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
{
"name": "@mussonindustrial/pyro-resource",
"version": "2.1.0",
"description": "Ignition project resource builder.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/mussonindustrial/pyro",
"directory": "packages/pyro-resource"
},
"bugs": {
"url": "https://github.com/mussonindustrial/pyro/issues"
},
"scripts": {
"build": "tsup-node --dts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/**/*.ts",
"lint:prettier": "prettier -c . --cache --ignore-path=../../.prettierignore",
"check-types": "tsc --noEmit"
},
"author": "Musson Industrial",
"license": "MIT",
"files": [
"dist"
],
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"devDependencies": {
"@mussonindustrial/eslint-config-pyro": "*",
"@mussonindustrial/pyro-tsconfig": "*",
"@types/lodash": "^4.14.195",
"eslint": "^8.42.0",
"tsup": "^6.7.0",
"typescript": "^5.1.3",
"vitest": "^0.32.0"
},
"dependencies": {
"@mussonindustrial/pyro-resource-signature": "*",
"chalk": "^4",
"csstype": "^3.1.2",
"jszip": "^3.10.1",
"lodash": "^4.17.21"
}
}