-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.6 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.6 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
{
"name": "@stackflow/plugin-basic-ui",
"version": "1.10.1-canary.0",
"repository": {
"type": "git",
"url": "https://github.com/daangn/stackflow.git",
"directory": "extensions/plugin-basic-ui"
},
"license": "MIT",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./index.css": "./dist/index.css"
},
"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"
},
"dependencies": {
"@stackflow/react-ui-core": "^1.1.2",
"@vanilla-extract/css": "^1.15.3",
"@vanilla-extract/dynamic": "^2.1.1",
"@vanilla-extract/private": "^1.0.5",
"@vanilla-extract/recipes": "^0.5.3"
},
"devDependencies": {
"@stackflow/core": "^1.1.0",
"@stackflow/esbuild-config": "^1.0.3",
"@stackflow/react": "^1.3.2",
"@types/react": "^18.3.3",
"esbuild": "^0.23.0",
"react": "^18.3.1",
"rimraf": "^3.0.2",
"typescript": "^5.5.3"
},
"peerDependencies": {
"@stackflow/core": "^1.1.0-canary.0",
"@stackflow/react": "^1.3.2-canary.0",
"@types/react": ">=16.8.0",
"react": ">=16.8.0"
},
"publishConfig": {
"access": "public"
},
"ultra": {
"concurrent": [
"dev",
"build"
]
}
}