-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
36
37
38
39
40
{
"name": "ts-template",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "tsc",
"dev": "vitest",
"test": "vitest run",
"changeset": "changeset",
"release": "npm run build && changeset publish",
"size-limit": "size-limit",
"postinstall": "types-sync"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maddhruv/ts-template.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/maddhruv/ts-template/issues"
},
"homepage": "https://github.com/maddhruv/ts-template#readme",
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@size-limit/preset-small-lib": "^8.2.4",
"@types/node": "^18.15.3",
"size-limit": "^8.2.4",
"tsup": "^6.6.3",
"types-sync": "^3.27.0",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vitest": "^0.29.2"
}
}