-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.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
{
"name": "aftc-modules",
"version": "1.17.18",
"description": "A collection of useful utilities / functions for JavaScript and TypeScript.",
"main": "index.js",
"types": "index.d.ts",
"filename": "aftc-modules.js",
"sideEffects": false,
"scripts": {
"build": "node cleanFolders && npx -p typescript tsc && node build",
"tsc": "npx -p typescript tsc",
"gen": "tsc && dts-bundle-generator -o ./types/index.d.ts './src/**/*.{js,ts}'",
"buildTypesDocumentedExample": "note above will use tsconfig.json or direct command line via npx -p typescript tsc src/**/*.js --declaration --allowJs --emitDeclarationOnly --outDir types",
"tsc2": "npx -p typescript tsc --declaration --declarationDir ./types --rootDir ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DarceyLloyd/aftc-modules.git"
},
"keywords": [
"aftc-modules.js"
],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/DarceyLloyd/aftc-modules/issues"
},
"homepage": "https://github.com/DarceyLloyd/aftc-modules#readme",
"devDependencies": {
"aftc-node-tools": "^0.7.18",
"fs-extra": "^11.1.0",
"jsodoc": "^1.0.5",
"typescript": "^5.6.3"
}
}