-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.29 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
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "rc-bullets-ts",
"version": "1.6.1",
"description": "一个简单的react弹幕库",
"main": "dist/main.js",
"module": "dist/main.js",
"types": "typings/app.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"emitDeclaration": "tsc --emitDeclarationOnly",
"dev": "rimraf ./dist && cross-env NODE_ENV=development npx webpack --config ./config/webpack.config",
"build": "rimraf ./typings && npm run emitDeclaration && rimraf ./dist && cross-env NODE_ENV=production npx webpack --config ./config/webpack.config",
"lint": "eslint --config .eslintrc.js --ext .jsx,.js,.ts,.tsx --fix",
"prepare": "husky install",
"preinstall": "npx force-resolutions"
},
"author": "slatejack",
"license": "MIT",
"resolutions": {
"loader-utils": "^2.0.3",
"json5": "^2.2.2",
"semver": "^5.7.2",
"postcss": "^8.4.31",
"@babel/traverse": "^7.23.2",
"braces": "^3.0.3",
"micromatch": "^4.0.8"
},
"dependencies": {
"@types/color-convert": "^2.0.0",
"@types/react": "^18.0.19",
"@types/react-dom": "^18.0.6",
"color-convert": "^2.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.54.9",
"stylelint": "^14.11.0",
"stylelint-scss": "^4.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/slatejack/rc-bullets-ts.git"
},
"devDependencies": {
"@babel/core": "^7.19.0",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.5",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"eslint": "^8.23.1",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.8",
"eslint-webpack-plugin": "^3.2.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.3.1",
"typescript": "^4.8.3",
"webpack": "^5.76.0",
"webpack-cli": "^4.10.0"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"npm run lint"
]
},
"files": [
"dist",
"typings"
],
"_moduleAliases": {
"@": "src"
}
}