-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.16 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.16 KB
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
87
88
89
90
91
92
{
"name": "@luk4x/list",
"version": "0.1.1",
"description": "A tiny, type-safe React component focused on improving DX when rendering lists",
"license": "MIT",
"author": "Lucas Maciel Francisco <luk4x.dev@gmail.com>",
"keywords": [
"react",
"list",
"react-component",
"react-list",
"type-safe",
"headless",
"developer experience",
"dx",
"key",
"inference",
"ui",
"map",
"frontend"
],
"type": "module",
"types": "index.d.ts",
"files": [
"dist",
"templates",
"index.d.ts",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"bin": {
"luk4x-list": "./dist/cli.mjs"
},
"homepage": "https://github.com/luk4x/list#readme",
"bugs": {
"url": "https://github.com/luk4x/list/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luk4x/list.git"
},
"scripts": {
"prepare": "husky",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "npm publish --access public --provenance",
"test": "vitest run",
"test:watch": "vitest",
"test:types": "tsd && echo \"All type tests passed\"",
"test:all": "pnpm test && pnpm test:types",
"typecheck": "tsc",
"lint": "eslint .",
"dev": "pnpm run build && node ./dist/cli.mjs",
"build": "tsup"
},
"tsd": {
"directory": "tests/type-tests"
},
"dependencies": {
"@clack/prompts": "^1.0.0"
},
"devDependencies": {
"@changesets/cli": "2.29.8",
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"tsup": "^8.5.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-de-morgan": "^1.3.1",
"typescript-eslint": "^8.54.0",
"@commitlint/cli": "^20.4.0",
"@commitlint/config-conventional": "^20.4.0",
"@commitlint/types": "^20.4.0",
"tsd": "^0.33.0",
"vitest": "^3.2.4",
"vite": "^6.3.5",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"@types/react": "^18",
"react": "^18",
"@types/node": "^18"
},
"packageManager": "pnpm@10.28.2",
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}