-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.91 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.91 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
{
"name": "@stackflow/link",
"version": "1.6.1",
"repository": {
"type": "git",
"url": "https://github.com/daangn/stackflow.git",
"directory": "extensions/link"
},
"license": "MIT",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./stable": {
"types": "./dist/stable/index.d.ts",
"require": "./dist/stable/index.js",
"import": "./dist/stable/index.mjs"
},
"./future": {
"types": "./dist/future/index.d.ts",
"require": "./dist/future/index.js",
"import": "./dist/future/index.mjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src",
"README.md"
],
"scripts": {
"build": "yarn build:js && yarn build:dts",
"build:dts": "tsc --emitDeclarationOnly",
"build:js": "node ./esbuild.config.js",
"clean": "rimraf dist",
"dev": "yarn build:js --watch && yarn build:dts --watch",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@stackflow/config": "^1.2.1",
"@stackflow/core": "^1.1.1",
"@stackflow/esbuild-config": "^1.0.3",
"@stackflow/plugin-history-sync": "^1.7.1",
"@stackflow/plugin-preload": "^1.4.3",
"@stackflow/react": "^1.4.2",
"@types/react": "^18.3.3",
"esbuild": "^0.23.0",
"esbuild-plugin-file-path-extensions": "^2.1.3",
"react": "^18.3.1",
"rimraf": "^3.0.2",
"typescript": "^5.5.3"
},
"peerDependencies": {
"@stackflow/core": "^1.1.0-canary.0",
"@stackflow/plugin-history-sync": "^1.6.4-canary.0",
"@stackflow/plugin-preload": "^1.4.3-canary.0",
"@stackflow/react": "^1.3.2-canary.0",
"@types/react": ">=16.8.0",
"react": ">=16.8.0"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"ultra": {
"concurrent": [
"dev",
"build"
]
}
}