generated from SevenOutman/ts-lib-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.27 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
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "csbg",
"version": "0.1.3",
"description": "Print badges in the console",
"bugs": {
"url": "https://github.com/SevenOutman/csbg/issues"
},
"repository": "github:SevenOutman/csbg",
"license": "MIT",
"author": "Doma <leishenghao@126.com>",
"sideEffects": [
"./dist/install.js",
"./dist/install.mjs"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./install": {
"types": "./dist/install.d.ts",
"require": "./dist/install.js",
"import": "./dist/install.mjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts-resolve && tsup src/install.ts --format cjs,esm --dts-resolve",
"dev": "vite demo",
"prepublishOnly": "pnpm run build",
"test": "vitest run --passWithNoTests"
},
"devDependencies": {
"@egoist/prettier-config": "1.0.0",
"prettier": "^2.8.4",
"prettier-plugin-packagejson": "^2.4.3",
"tsup": "6.4.0",
"tsx": "^3.12.6",
"typescript": "^4.9.5",
"vite": "^4.3.1",
"vitest": "0.12.6"
},
"publishConfig": {
"access": "public"
}
}