-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 897 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
38
{
"name": "ts-library-starter",
"version": "0.0.1",
"description": "TypeScript library template",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"default": "./dist/index.cjs",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"node": "./dist/index.cjs"
},
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsup src/index.ts",
"start": "npm run build -- --watch",
"lint": "tsc",
"test": "vitest",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"typescript",
"template"
],
"author": "didof <didonato.fr@gmail.com>",
"license": "MIT",
"devDependencies": {
"@vitest/coverage-c8": "^0.28.4",
"ts-node": "^10.9.1",
"tsup": "^6.5.0",
"typescript": "^4.9.5",
"vitest": "^0.28.4"
},
"publishConfig": {
"assess": "public"
}
}