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
60 lines (60 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.26 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
{
"name": "@stackflow/core",
"version": "0.11.0",
"license": "MIT",
"exports": {
".": {
"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"
},
"jest": {
"coveragePathIgnorePatterns": [
"index.ts",
"index.tsx"
],
"transform": {
"^.+\\.(t|j)sx?$": "@swc/jest"
}
},
"dependencies": {
"react-fast-compare": "^3.2.0"
},
"devDependencies": {
"@stackflow/esbuild-config": "^0.11.0",
"@swc/core": "^1.2.182",
"@swc/jest": "^0.2.21",
"@types/jest": "^28.1.6",
"@types/lodash": "^4.14.182",
"esbuild": "^0.14.37",
"jest": "^28.1.0",
"rimraf": "^3.0.2",
"typescript": "^4.7.4",
"ultra-runner": "^3.10.5"
},
"publishConfig": {
"access": "public"
},
"ultra": {
"concurrent": [
"dev",
"build"
]
}
}