generated from blb-ventures/npm-lib-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.14 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
78
{
"name": "@blb-ventures/react-flat-list",
"version": "0.10.2",
"description": "",
"main": "./lib/index.js",
"module": "./lib/index.mjs",
"types": "./index.d.ts",
"files": [
"/lib",
"/lib/style.css",
"/index.d.ts"
],
"homepage": "https://github.com/blb-ventures/react-flat-list",
"repository": {
"type": "git",
"url": "https://github.com/blb-ventures/react-flat-list.git"
},
"bugs": {
"url": "https://github.com/blb-ventures/react-flat-list/issues"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf ./lib",
"build": "npm run clean && npm run build:esm && npm run build:cjs && cp ./src/style.css ./lib/style.css",
"build:esm": "rollup --config rollup.config.js",
"build:cjs": "tsc -p tsconfig.cjs.json",
"prepack": "npm run build",
"lint": "eslint ./src",
"semantic-release": "semantic-release"
},
"keywords": [],
"author": "Eduardo S Ciciliato",
"license": "ISC",
"exports": {
".": {
"require": "./lib/index.js",
"import": "./lib/index.mjs",
"types": "./index.d.ts"
},
"./package.json": "./package.json",
"./lib/style.css": "./lib/style.css"
},
"devDependencies": {
"@blb-ventures/eslint-config": "^0.1.6",
"@rollup/plugin-typescript": "^11.0.0",
"@types/eslint": "^8.21.3",
"@types/react": "^18.0.28",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"confusing-browser-globals": "^1.0.11",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"react": "^18.2.0",
"rollup": "^3.20.1",
"semantic-release": "^20.1.3",
"typescript": "^5.0.2"
},
"contributors": [
{
"name": "Eduardo S Ciciliato",
"url": "https://eduardociciliato.com.br"
}
],
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"access": "public"
}
}