-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.24 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "untilted",
"version": "0.0.0",
"description": "",
"keywords": [],
"private": true,
"author": "your-username",
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": ["dist", "src"],
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"scripts": {
"lint": "biome lint ./src",
"check": "biome check ./src --apply --no-errors-on-unmatched --files-ignore-unknown=true",
"check:ci": "biome check ./src --no-errors-on-unmatched --files-ignore-unknown=true",
"test": "vitest run",
"test:ci": "vitest run --coverage",
"test:watch": "vitest",
"build": "shx rm -rf ./dist && NODE_ENV=production microbundle --tsconfig ./tsconfig.json --format modern,cjs --output dist/index.js && shx cp ./dist/index.d.ts ./dist/index.d.cts",
"type:check": "tsc --noEmit",
"gen:docs": "rm -rf ./docs/api && typedoc --options typedoc.cjs",
"prepublishOnly": "pnpm build",
"prepare": "lefthook install",
"release": "pnpm run prepublishOnly && pnpm changeset publish",
"bump:version": "pnpm changeset version && pnpm biome format --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/your-username/untilted.git"
},
"bugs": {
"url": "https://github.com/your-username/untilted/issues"
},
"homepage": "https://github.com/your-username/untilted#readme",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@biomejs/biome": "1.9.4",
"@changesets/cli": "^2.27.8",
"@types/node": "^22.7.4",
"@vitest/coverage-v8": "^2.1.1",
"babel-plugin-dev-expression": "^0.2.3",
"babel-plugin-transform-define": "^2.1.4",
"lefthook": "^1.7.17",
"microbundle": "^0.15.1",
"shx": "^0.3.4",
"typedoc": "^0.27.0",
"typedoc-plugin-markdown": "^4.2.8",
"typescript": "^5.6.2",
"vite-plugin-babel": "^1.2.0",
"vitest": "^2.1.1"
},
"dependencies": {}
}