-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
57 lines (57 loc) · 2.02 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
{
"name": "farrow",
"license": "MIT",
"description": "A type-friendly web framework",
"author": "https://github.com/Lucifier129",
"private": true,
"engines": {
"node": ">=14.x"
},
"scripts": {
"build": "run-s clean:build build:source clean:tests",
"build:dist": "tsc -b ./tsconfig.dist.json",
"build:esm": "tsc -b ./tsconfig.esm.json",
"build:source": "run-p build:dist build:esm",
"clean": "run-p clean:build clean:deps",
"clean:build": "shx rm -rf ./packages/*/*.tsbuildinfo && shx rm -rf ./packages/*/{dist,esm}",
"clean:deps": "shx rm -rf ./{packages,examples}/*/node_modules && shx rm -rf node_modules",
"clean:tests": "shx rm -rf ./packages/*/{dist,esm}/**/__tests__",
"lint": "eslint --quiet ./packages",
"format": "run-p format:source format:other",
"format:other": "prettier ./**/*.{md,yml,json,html} --write",
"format:source": "prettier ./**/*.{ts,tsx,js} --write",
"init": "pnpm install && pnpm run build",
"test": "pnpm run --filter \"./packages/**\" test",
"test:coverage": "pnpm run --filter \"./packages/**\" test:coverage",
"publish": "pnpm changeset publish",
"prepublish": "pnpm run build",
"version": "pnpm changeset version",
"release": "pnpm run version && pnpm run publish",
"prerelease": "pnpm run build",
"change": "pnpm changeset"
},
"devDependencies": {
"@changesets/cli": "2.26.1",
"@swc/core": "^1.6.13",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"codecov": "^3.8.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prefer-let": "^1.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.34.3",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"shx": "^0.3.4",
"typescript": "^5.5.3"
},
"dependencies": {
"@types/node": "^18.19.39"
}
}