-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
69 lines (69 loc) · 1.98 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
{
"name": "fower",
"version": "0.0.10",
"private": true,
"description": "A style library for rapid UI development.",
"scripts": {
"build": "turbo run build --filter=./packages/*",
"build:types": "turbo run build:types --filter=./packages/*",
"build:web": "turbo run build --scope=web",
"clean": "turbo run clean && rm -rf node_modules",
"lint": "turbo run lint",
"test": "turbo run test",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"postbuild": "npm run build:types",
"prepare": "husky install",
"changeset": "changeset",
"version": "changeset version",
"publish": "pnpm publish -r"
},
"eslintConfig": {
"extends": "tie-app"
},
"lint-staged": {
"*.{ts,tsx}": "yarn coveralls",
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/forsigner/fower.git"
},
"author": "@forsigner",
"license": "MIT",
"bugs": {
"url": "https://github.com/forsigner/fower/issues"
},
"homepage": "https://github.com/forsigner/fower#readme",
"devDependencies": {
"@fower/preset-web": "workspace:*",
"@fower/colors": "workspace:*",
"@fower/core": "workspace:*",
"@fower/utils": "workspace:*",
"@types/react": "^18.2.8",
"csstype": "^3.1.2",
"@changesets/cli": "^2.25.2",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/jest": "^26.0.22",
"@types/prettier": "^2.2.3",
"coveralls": "^3.1.0",
"eslint-config-tie-app": "0.0.5",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1",
"ts-jest": "^26.5.4",
"ts-morph": "^11.0.3",
"tsdx": "^0.14.1",
"tslib": "^2.5.3",
"turbo": "latest",
"typescript": "^5.1.3"
},
"dependencies": {},
"packageManager": "[email protected]"
}