-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.94 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
79
80
81
82
83
84
85
86
{
"name": "aio-inputs",
"version": "3.2.1",
"description": "An opinionated inputs state manager for react",
"scripts": {
"build": "npm ci && npm run build:noci",
"build:noci": "npm run clean && npm run lint:prettier && npm run rollup",
"lint:prettier": "npm run lint && npm run prettier",
"build:dts": "dts-bundle-generator --config ./dts.json && npm run clean:temp",
"start": "npm run lint && npm run rollup-dev",
"clean:start": "npm run clean && npm run lint && npm run rollup-dev",
"rollup-dev": "rollup -c --experimentalLogSideEffects true --watch && npm run build:dts",
"rollup": "rollup -c && npm run build:dts",
"prettier": "prettier ./src --write",
"lint": "eslint ./src --ext .ts",
"bpv": "npm version preminor --no-git-tag-version",
"clean": "npm run clean:lib:win && npm run clean:lib:unix",
"clean:temp": "npm run clean:temp:win && npm run clean:temp:unix",
"clean:check:win": "node -e \"if (process.platform === 'win32') process.exit(1)\"",
"clean:check:unix": "node -e \"if (process.platform !== 'win32') process.exit(1)\"",
"clean:lib:win": "npm run clean:check:win || , if exist lib rmdir /Q /S lib",
"clean:lib:unix": "npm run clean:check:unix || rm -rf lib",
"clean:temp:win": "npm run clean:check:win || , if exist temp rmdir /Q /S temp",
"clean:temp:unix": "npm run clean:check:unix || rm -rf temp",
"npm:pack": "npm pack",
"test": "vitest",
"test-coverage": "vitest run --coverage",
"local:publish": "cd lib && npm publish --registry http://localhost:200/ && cd ..",
"cache:install": "npm i --registry http://localhost:200/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/klm-lab/inputs.git"
},
"author": "Arnaud Litaaba <litaabaarnaud@gmail.com>",
"license": "MIT",
"files": [
"./**"
],
"private": false,
"bugs": {
"url": "https://github.com/klm-lab/inputs/issues"
},
"homepage": "https://github.com/klm-lab/inputs#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.5",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@types/react": "^18.2.20",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"dts-bundle-generator": "^8.0.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "3.0.1",
"rollup-plugin-copy": "^3.5.0",
"typescript": "^5.2.2"
},
"types": "./index.d.ts",
"main": "./index.js",
"module": "./index.mjs",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.mjs",
"module": "./index.mjs",
"require": "./index.js",
"default": "./index.js"
}
},
"keywords": [
"react",
"inputs",
"form",
"validation",
"state"
],
"dependencies": {
"aio-store": "^2.5.2"
},
"peerDependencies": {
"react": "^18.2.0"
},
"sideEffects": false
}