-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.1 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.1 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
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
{
"name": "haystack-codegen",
"description": "Project Haystack Core code generation tools",
"keywords": [
"project haystack",
"haystack",
"core",
"typescript",
"codegen"
],
"license": "BSD-3-Clause",
"author": "Gareth Johnson",
"homepage": "https://github.com/j2inn/haystack-codegen",
"email": "support@j2inn.com",
"version": "1.0.7",
"module": "dist/index.es.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/j2inn/haystack-codegen"
},
"bin": {
"defcodegen": "dist/index.js"
},
"scripts": {
"lint": "prettier-eslint \"src/**/*.ts\" \"spec/**/*.ts\"",
"format": "prettier-eslint \"src/**/*.ts\" \"spec/**/*.ts\" --write",
"test": "jest",
"build": "npm run build:clean && tsc --project ./tsconfig.build.json",
"build:clean": "rimraf ./dist",
"prepack": "npm run lint && npm test && npm run build",
"codegen": "npm run build && node ./dist/index",
"doc": "typedoc ./src",
"checktypes": "tsc --noEmit"
},
"files": [
"dist/**/*",
"rc/**/*"
],
"config": {
"unsafe-perm": true
},
"devDependencies": {
"@types/adm-zip": "^0.5.0",
"@types/colors": "^1.2.4",
"@types/jest": "^29.4.0",
"@types/node": "^18.7.14",
"@types/node-fetch": "^2.6.12",
"@typescript-eslint/eslint-plugin": "^5.36.0",
"@typescript-eslint/parser": "^5.36.0",
"copyfiles": "^2.4.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.4.3",
"nodemon": "^2.0.19",
"npm-dts": "^1.3.13",
"npm-dts-webpack-plugin": "^1.3.13",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"prettier-eslint-cli": "^7.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.78.1",
"ts-jest": "^29.0.5",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.2",
"typedoc": "^0.27.6",
"typescript": "^5.1.3",
"typescript-eslint-parser": "^22.0.0"
},
"dependencies": {
"adm-zip": "^0.5.9",
"colors": "^1.4.0",
"commander": "^9.4.0",
"haystack-core": "^3.0.6",
"haystack-nclient": "^4.0.4",
"node-fetch": "^2.6.5",
"yaml": "^2.7.1"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}