-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.77 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
{
"name": "@bodynarf/react.components",
"version": "1.11.1",
"author": {
"name": "Artem",
"email": "bodynar@gmail.com"
},
"repository": {
"url": "https://github.com/bodynar/bodynarf.react-components",
"type": "git"
},
"bugs": {
"url": "https://github.com/bodynar/bodynarf.react-components/issues",
"email": "bodynar@gmail.com"
},
"keywords": [
"ts",
"typescript",
"react",
"react component",
"bulma"
],
"scripts": {
"build": "npx tsc && tsc-alias -p tsconfig.json",
"copy_styles": "copyfiles -u 1 src/**/*.scss dist",
"copy_main": "copyfiles package.json readme.md dist",
"transfer": "npm run copy_styles && npm run copy_main",
"build_transfer": "npm run build && npm run transfer",
"prepublish": "npm run build_transfer && cd dist && npm pack",
"publish_pkg": "npm run build_transfer && cd dist && npm publish --access=public",
"lint": "npx eslint src/**/*.ts src/**/*.tsx",
"prep_dev": "copyfiles src/**/*.* demo/src/components"
},
"devDependencies": {
"@types/react": "^18.0.11",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"copyfiles": "^2.4.1",
"eslint": "^8.48.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"tsc-alias": "^1.8.6",
"typescript": "^4.7.3"
},
"peerDependencies": {
"@bodynarf/utils": "^1.4.0",
"bulma": "^0.9.4",
"react": "^18.1.0",
"react-dom": "^18.1.0"
}
}