-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.5 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.5 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
{
"name": "@aidc-toolkit/dev",
"version": "1.0.46",
"description": "Shared development artefacts for AIDC Toolkit",
"type": "module",
"main": "dist/index.js",
"homepage": "https://aidc-toolkit.com",
"repository": {
"type": "git",
"url": "git+https://github.com/aidc-toolkit/dev.git"
},
"bugs": {
"url": "https://github.com/aidc-toolkit/dev/issues"
},
"license": "Apache-2.0",
"author": {
"name": "Kevin Dean",
"email": "Kevin.Dean@datadevelopment.com",
"url": "https://www.linkedin.com/in/kdean"
},
"scripts": {
"lint": "eslint",
"tsc-src": "tsc --project tsconfig-src.json",
"build:non-prod": "rimraf dist tsconfig-src.tsbuildinfo && npm run tsc-src -- --declarationMap --sourceMap",
"build:alpha": "npm run build:non-prod && tsc --project tsconfig-config.json --noEmit",
"build:beta": "npm run build:non-prod",
"build:prod": "npm run tsc-src -- --noEmit && tsup --tsconfig tsconfig-tsup.json",
"build:doc": "npm run build:non-prod",
"copy-workflows": "copy-files-from-to --config copy-workflows.json"
},
"devDependencies": {
"copy-files-from-to": "^4.0.0"
},
"dependencies": {
"@eslint/js": "^9.39.3",
"@stylistic/eslint-plugin": "^5.9.0",
"@types/node": "^25.3.3",
"eslint": "^9.39.3",
"eslint-config-love": "^151.0.0",
"eslint-plugin-jsdoc": "^62.7.1",
"jiti": "^2.6.1",
"rimraf": "^6.1.3",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
}
}