forked from daangn/stackflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.44 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.44 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
{
"name": "@stackflow/core",
"version": "1.2.0",
"repository": {
"type": "git",
"url": "https://github.com/daangn/stackflow.git",
"directory": "core"
},
"license": "MIT",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/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 test --watch && yarn build:js --watch && yarn build:dts --watch",
"test": "yarn jest",
"typecheck": "tsc --noEmit"
},
"jest": {
"coveragePathIgnorePatterns": [
"index.ts",
"index.tsx"
],
"transform": {
"^.+\\.(t|j)sx?$": "@swc/jest"
}
},
"dependencies": {
"react-fast-compare": "^3.2.2"
},
"devDependencies": {
"@stackflow/esbuild-config": "^1.0.3",
"@swc/core": "^1.6.6",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.6",
"esbuild": "^0.23.0",
"jest": "^29.7.0",
"rimraf": "^3.0.2",
"typescript": "^5.5.3",
"ultra-runner": "^3.10.5"
},
"publishConfig": {
"access": "public"
},
"ultra": {
"concurrent": [
"dev",
"build"
]
}
}