-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 2.1 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
{
"scripts": {
"bin-license": "ts-node -T --project bin/tsconfig.json bin/license",
"build": "bash build.sh",
"format": "prettier --write .",
"format-verify": "prettier --check .",
"lint": "eslint .",
"prepublishOnly": "npm run verify && npm run build",
"start": "ava --watch",
"start-building": "rm -rf dist && NODE_ENV=production tsc --watch",
"test": "ava",
"typecheck": "tsc --noEmit && tsc --noEmit --project bin/tsconfig.json",
"verify": "npm run typecheck && npm run lint && npm run format-verify && npm run test && npm run verify-entry-points",
"verify-entry-points": "npm run build && node -e 'require(\".\")' && node -e 'import(\"./dist/esm/index.js\")' && node dist/bin/license/index.js --version >/dev/null"
},
"bin": {
"denis-react-license-tool": "dist/bin/license/index.js"
},
"browser": "dist/esm/index.js",
"description": "React tools",
"dependencies": {
"@types/findup-sync": "^4.0.5",
"commander": "^12.1.0",
"findup-sync": "^5.0.0",
"license-checker-webpack-plugin": "=0.2.1",
"use-memo-one": "^1.1.3",
"webpack": "^5.96.1"
},
"devDependencies": {
"@denis-sokolov/eslint-plugin": "^16.0.0",
"@types/license-checker-webpack-plugin": "^0.2.4",
"@types/react": "^18.3.12",
"@types/react-test-renderer": "^18.3.0",
"ava": "^6.2.0",
"eslint": "^8.57.1",
"fix-es-imports": "^0.1.4",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-test-renderer": "^18.3.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=16",
"npm": ">=8"
},
"files": [
"dist/**/*",
"!dist/**/*.test.*",
"!dist/**/lib-test/*"
],
"license": "ISC",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"name": "@denis-sokolov/react",
"peerDependencies": {
"react": "^18"
},
"prettier": {},
"repository": "[email protected]:denis-sokolov/react-tools.git",
"sideEffects": false,
"type": "module",
"types": "dist/esm/index.js",
"version": "11.0.0"
}