-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·37 lines (37 loc) · 977 Bytes
/
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
36
37
{
"name": "typescript-library-skeleton",
"version": "0.1.123",
"description": "Semver-oriented TypeScript library skeleton.",
"main": "dist/main.js",
"bin": {
"example": "cli/example.sh",
"example.js": "cli/example.js"
},
"types": "dist/main.d.ts",
"typings": "dist/main.d.ts",
"scripts": {
"test": "echo 'npm test is currently a no-op'",
"postinstall": "./assets/postinstall.sh",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ORESoftware/typescript-library-skeleton.git"
},
"keywords": [
"typescript",
"library",
"skeleton",
"scaffold"
],
"author": "YOUR NAME HERE",
"license": "SEE LICENSE IN license.md",
"bugs": {
"url": "https://github.com/ORESoftware/typescript-library-skeleton/issues"
},
"homepage": "https://github.com/ORESoftware/typescript-library-skeleton#readme",
"dependencies": {},
"devDependencies": {
"@types/node": "^20.11.25"
}
}