-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.86 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.86 KB
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
{
"type": "module",
"name": "react-ish",
"description": "A lightweight reactive library for playing around and experimenting.",
"version": "1.0.0",
"license": "ISC",
"keywords": [],
"author": "Berenjena",
"main": "dist/index.js",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsup",
"ci": "pnpm build && pnpm format && pnpm check-exports && pnpm lint && pnpm test",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"start": "node dist/index.js",
"dev:tsc": "tsc --watch --preserveWatchOutput",
"dev:node": "node --enable-source-maps --watch dist/index.js",
"dev": "pnpm run \"/dev:/\"",
"test": "vitest run --coverage",
"test:ci": "vitest run --reporter=verbose --coverage",
"test:watch": "vitest --coverage",
"watch": "pnpm run test:watch",
"lint": "tsc && eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"clean": "rm -rf dist",
"analyze": "set SOURCE_MAP=true && pnpm run build && source-map-explorer dist/index.js",
"prepare": "husky"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.4",
"@eslint/js": "^9.25.1",
"@eslint/markdown": "^6.4.0",
"@types/node": "^22.14.1",
"@vitest/coverage-v8": "3.1.2",
"eslint": "^9.25.1",
"globals": "^16.0.0",
"lint-staged": "^15.5.1",
"markdownlint": "^0.37.4",
"prettier": "^3.5.3",
"source-map-explorer": "^2.5.3",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.0",
"vitest": "^3.1.2"
},
"packageManager": "pnpm@10.9.0"
}