-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 948 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 948 Bytes
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
{
"name": "@tinyhref/cdn-free",
"version": "1.0.0",
"description": "Create CDN Free from jsDelivr, UNPKG,...",
"keywords": [
"cdn free",
"jsDelivr",
"UNPKG"
],
"license": "MIT",
"author": {
"name": "TinyHref",
"website": "https://tinyhref.com"
},
"repository": {
"type": "git",
"url": "https://github.com/tinyhref/cdn-free"
},
"main": "src/index.ts",
"sideEffects": false,
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup src --dts",
"dev": "pnpm build:fast --watch",
"clean": "rimraf dist .turbo",
"typecheck": "tsc --noEmit",
"build:fast": "tsup src",
"prepack": "clean-package",
"postpack": "clean-package restore"
},
"devDependencies": {
"@types/node": "15.12.4",
"clean-package": "2.2.0",
"tsup": "8.5.0",
"typescript": "4.9.5"
},
"clean-package": "./clean-package.config.json"
}