-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.78 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
{
"name": "@elhakimdev/typescript-adt",
"version": "0.0.8",
"description": "Experimental abstraction of data structure utils for javascript",
"repository": {
"type": "git",
"url": "https://github.com/elhakimdev/typescript-abstract-data-type"
},
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "vitest dev --ui",
"play": "jiti playground",
"lint": "eslint --cache --ext .ts,.js,.mjs,.cjs . && prettier -c src test",
"lint:fix": "eslint --cache --ext .ts,.js,.mjs,.cjs . --fix && prettier -c src test -w",
"prepack": "pnpm build",
"release": "pnpm test && changelogen --release && npm publish && git push --follow-tags",
"test": "pnpm lint && pnpm test:types && vitest run --coverage",
"test:types": "tsc --noEmit --skipLibCheck",
"docs:generate": "documentation build src/** -f md --github -o ./docs/@api/",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@types/node": "^20.11.5",
"@vitest/coverage-v8": "^1.2.1",
"@vitest/ui": "^1.2.1",
"changelogen": "^0.5.5",
"documentation": "^14.0.2",
"eslint": "^8.56.0",
"eslint-config-unjs": "^0.2.1",
"jiti": "^1.21.0",
"prettier": "^3.2.4",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"vitepress": "1.0.0-rc.40",
"vitest": "^1.2.1",
"vue": "^3.4.15"
},
"packageManager": "pnpm@8.12.1"
}