-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.55 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
74
75
76
77
78
79
80
81
82
{
"name": "tasquencer",
"version": "0.0.0-development",
"type": "module",
"module": "build/index.js",
"exports": {
".": {
"types": "./build/src/index.d.ts",
"import": "./build/index.js"
}
},
"types": "./build/src/index.d.ts",
"license": "MIT",
"engines": {
"node": "^22.1.0",
"npm": "^10.7.0"
},
"volta": {
"node": "22.1.0",
"npm": "10.7.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run clean && npm run type:dts && npm run build:main",
"build:main": "swc ./src -d ./build",
"clean": "rimraf build coverage nyc_output",
"type:dts": "tsc --emitDeclarationOnly --project tsconfig.build.json",
"type:check": "vitest --typecheck.only",
"format": "prettier \"src/**/*.ts\" --write",
"format:check": "prettier \"src/**/*.ts\" --check",
"lint": "eslint src --ext .ts --fix",
"lint:check": "eslint src --ext .ts",
"test": "vitest run --typecheck",
"test:watch": "vitest watch --typecheck",
"test:coverage": "vitest run --coverage",
"test:setup": "tsx ./scripts/test-setup.ts",
"spell:check": "cspell \"{README.md,CODE_OF_CONDUCT.md,CONTRIBUTING.md,.github/*.md,src/**/*.ts}\"",
"cz": "cz",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@ryansonshine/commitizen": "^4.2.8",
"@ryansonshine/cz-conventional-changelog": "^3.3.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^10.0.1",
"@semantic-release/github": "^9.0.3",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^11.0.4",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.68",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/node": "^22.1.0",
"@types/prompts": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-istanbul": "^2.0.5",
"c8": "^8.0.0",
"cspell": "^6.31.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"nyc": "^17.0.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"semantic-release": "^24.1.0",
"source-map-support": "^0.5.21",
"tsx": "^3.12.7",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"dependencies": {
"type-fest": "^4.26.0",
"effect": "^3.7.2",
"mutative": "^1.0.8",
"nanoid": "^5.0.7"
}
}