-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 844 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 844 Bytes
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
{
"name": "typescript-library-template",
"version": "0.0.0",
"description": "Template for creating TypeScript libraries",
"license": "MIT",
"author": "Adam Jones (domdomegg)",
"repository": {
"type": "git",
"url": "https://github.com/domdomegg/typescript-library-template.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest --watch",
"lint": "eslint",
"clean": "rm -rf dist",
"build": "tsc --project tsconfig.build.json",
"prepublishOnly": "npm run clean && npm run build"
},
"devDependencies": {
"@tsconfig/node-lts": "^22.0.2",
"eslint": "^9.32.0",
"eslint-config-domdomegg": "^2.0.9",
"tsconfig-domdomegg": "^1.0.0",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}
}