-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
77 lines (77 loc) · 2 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
{
"name": "@rxts/types",
"version": "0.0.0",
"description": "TypeScript Type Definitions same as DefinitelyTyped.",
"repository": "[email protected]:rx-ts/types.git",
"author": "JounQin <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "run-s build:ts build:r",
"build:r": "r -f cjs",
"build:ts": "tsc -b",
"clean": "rimraf packages/*/{lib,*.tsbuildinfo}",
"dev": "w -e docs --disableDotRule --publicPath /",
"lint": "run-p lint:*",
"lint:es": "eslint . --cache -f friendly",
"lint:ts": "tsc --noEmit",
"prepare": "simple-git-hooks && yarn-deduplicate --strategy fewer || exit 0",
"prerelease": "yarn build",
"release": "changeset publish",
"serve": "sirv dist",
"typecov": "type-coverage",
"vercel-build": "w -e docs -p --publicPath /"
},
"devDependencies": {
"@1stg/app-config": "^4.1.3",
"@1stg/lib-config": "^6.1.3",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.8",
"@pkgr/webpack": "^3.4.0",
"@pkgr/webpack-mdx": "^2.2.0",
"@pkgr/webpack-react": "^2.1.1",
"@types/node": "^17.0.45",
"@types/react": "^18.2.73",
"@types/react-dom": "^18.2.23",
"github-markdown-css": "^5.7.0",
"html-webpack-harddisk-plugin": "^2.0.0",
"patch-package": "^6.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.26.2",
"sirv-cli": "^2.0.2",
"svelte": "^3.59.2",
"ts-node": "^10.9.2",
"type-coverage": "^2.29.1",
"typescript": "^4.9.5",
"vue": "^3.5.10"
},
"resolutions": {
"prettier": "^2.8.8"
},
"browserslist": [
"extends @1stg/browserslist-config/modern"
],
"commitlint": {
"extends": [
"@1stg"
]
},
"prettier": "@1stg/prettier-config",
"renovate": {
"extends": [
"@1stg"
]
},
"typeCoverage": {
"atLeast": 100,
"cache": true,
"detail": true,
"showRelativePath": true,
"strict": true,
"update": true
}
}