-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 870 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
{
"name": "ts-lib-test1",
"version": "1.0.0",
"description": "A typescript library",
"type": "module",
"exports": {
".": "./dist/index.js",
"./dir": "./dist/dir/index.js"
},
"files": [
"dist/",
"src/"
],
"scripts": {
"build": "rimraf dist && rimraf docs && tsc && npx typedoc --readme none",
"test": "npm run build && tsc -p tsconfig.test.json && node tests/test.js"
},
"keywords": [],
"author": "matrm <[email protected]>",
"license": "ISC",
"devDependencies": {
"rimraf": "^6.0.1",
"typedoc": "^0.26.5",
"typedoc-plugin-markdown": "^4.2.5",
"typescript": "^5.5.4"
},
"repository": {
"type": "git",
"url": "https://github.com/matrm/ts-lib-test1.git"
},
"bugs": {
"url": "https://github.com/matrm/ts-lib-test1/issues"
},
"homepage": "https://github.com/matrm/ts-lib-test1#readme"
}