-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.79 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
{
"name": "genshi",
"version": "0.0.0",
"description": "A simple and lightweight state management library for React Native",
"author": "Samrith Shankar <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/samrith-s/genshi#readme",
"private": true,
"type": "module",
"source": "src/index.ts",
"module": "lib/index.js",
"main": "lib/index.cjs",
"types": "lib/types/src/index.d.ts",
"exports": {
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/samrith-s/genshi.git"
},
"bugs": {
"url": "https://github.com/samrith-s/genshi/issues"
},
"files": [
"lib",
"src"
],
"workspaces": [
"packages/*"
],
"scripts": {
"g:publish": "vite-node --script scripts/publish.ts",
"preinstall": "yarn constraints",
"g:lint": "sh scripts/shell/lint.sh",
"g:lint:fix": "sh scripts/shell/lint.sh --fix",
"g:format": "sh scripts/shell/format.sh",
"g:format:write": "sh scripts/shell/lint.sh --write"
},
"devDependencies": {
"@types/fs-extra": "~11",
"@types/minimist": "~1",
"@types/node": "~20.12.11",
"@typescript-eslint/eslint-plugin": "~7.8.0",
"@typescript-eslint/parser": "~7.8.0",
"@vitest/coverage-v8": "~1.6.0",
"@vitest/ui": "~1.6.0",
"@yarnpkg/types": "~4.0.0",
"eslint": "~8.57.0",
"eslint-config-prettier": "~9.1.0",
"eslint-import-resolver-typescript": "~3.6.1",
"eslint-plugin-import-x": "~4.4.2",
"eslint-plugin-prettier": "~5.1.3",
"fs-extra": "~11.2.0",
"minimist": "~1.2.8",
"prettier": "~3.2.5",
"typescript": "~5.4.5",
"vite": "~5.2.11",
"vite-node": "~1.6.0",
"vite-plugin-dts": "~3.9.1",
"vitest": "~1.6.0"
},
"packageManager": "[email protected]"
}