forked from yiminghe/dom-align
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.71 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@rc-component/dom-align",
"version": "2.0.1",
"description": "Align DOM Node Flexibly ",
"packageManager": "pnpm@8.9.0",
"engines": {
"node": ">=14.x"
},
"keywords": [
"react",
"react-component",
"dom-align"
],
"main": "./lib/index",
"module": "./es/index",
"types": "./lib/index.d.ts",
"files": [
"es",
"lib"
],
"homepage": "http://github.com/react-component/dom-align",
"repository": {
"type": "git",
"url": "git@github.com:react-component/dom-align.git"
},
"bugs": {
"url": "http://github.com/react-component/dom-align/issues"
},
"license": "MIT",
"scripts": {
"start": "dumi dev",
"build": "dumi build",
"compile": "father build",
"prepublishOnly": "npm run compile && np --yolo --no-publish",
"lint": "eslint src/ docs/ --ext .tsx,.ts,.jsx,.js",
"prettier": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"test": "cypress run --component",
"test:ci": "cypress run --component --record --key $CYPRESS_RECORD_KEY",
"tsc": "tsc --noEmit",
"now-build": "npm run build"
},
"dependencies": {
"@babel/runtime": "^7.23.1"
},
"devDependencies": {
"@cypress/code-coverage": "^3.12.3",
"@rc-component/father-plugin": "^1.0.2",
"@types/node": "^20.8.5",
"@types/react": "18.x",
"@types/react-dom": "18.x",
"@umijs/fabric": "^4.0.1",
"cypress": "^13.3.1",
"dumi": "^2.1.10",
"eslint": "^8.51.0",
"father": "^4.0.0",
"jsonp": "^0.2.1",
"next": "^13.5.4",
"normalize.css": "^8.0.1",
"np": "^9.2.0",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "5.x"
},
"publishConfig": {
"access": "public"
}
}