-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.24 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.24 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
{
"name": "stuple",
"version": "0.4.3",
"description": "More to come! :)",
"main": "index.js",
"types": "index.ts",
"exports": {
".": {
"types": "./index.ts",
"import": "./esm/index.js",
"require": "./index.js",
"default": "./index.js"
}
},
"files": [
"index.js",
"index.ts",
"types.ts",
"react-simple-util.ts",
"stuple-core.ts",
"stuple-memo.ts",
"esm",
"README.md",
"docs"
],
"repository": {
"type": "git",
"url": "https://github.com/700software/stuple"
},
"scripts": {
"build": "tsc && tsc -p tsconfig.esm.json",
"prepack": "npm install && typedoc && npm run build",
"postpublish": "git add . && node -e \"require('child_process').execSync(`git commit -m v${require('./package.json').version}`, { stdio: 'inherit' })\" && git push"
},
"devDependencies": {
"@types/react": "^19.1.6",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"eslint-config-next": "^14.2.4",
"react": "^18.3.1",
"typedoc": "^0.28.2",
"typedoc-plugin-markdown": "^4.6.1",
"typescript": "^5.5.3"
},
"keywords": [
"react",
"slice",
"state",
"tuple"
],
"author": "Bryan Field <bfield@700software.com>",
"license": "Unlicense"
}