@uni-helper/jsonu 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +21 -0
- package/README.md +164 -0
- package/dist/index.d.mts +51 -0
- package/dist/index.mjs +1765 -0
- package/package.json +69 -0
package/package.json
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@uni-helper/jsonu",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "0.0.1",
|
|
5
|
+
"description": "uniapp 条件编译的 json 解析工具",
|
|
6
|
+
"author": "FliPPeDround <flippedround@qq.com>",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"funding": "https://afdian.com/a/flippedround",
|
|
9
|
+
"homepage": "https://github.com/uni-helper/jsonu#readme",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/uni-helper/jsonu.git"
|
|
13
|
+
},
|
|
14
|
+
"bugs": "https://github.com/uni-helper/jsonu/issues",
|
|
15
|
+
"keywords": [
|
|
16
|
+
"uniapp",
|
|
17
|
+
"json",
|
|
18
|
+
"condition",
|
|
19
|
+
"compile"
|
|
20
|
+
],
|
|
21
|
+
"sideEffects": false,
|
|
22
|
+
"exports": {
|
|
23
|
+
".": "./dist/index.mjs",
|
|
24
|
+
"./package.json": "./package.json"
|
|
25
|
+
},
|
|
26
|
+
"types": "./dist/index.d.mts",
|
|
27
|
+
"files": [
|
|
28
|
+
"dist"
|
|
29
|
+
],
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@antfu/eslint-config": "^9.0.0",
|
|
32
|
+
"@antfu/ni": "^30.1.0",
|
|
33
|
+
"@antfu/utils": "^9.3.0",
|
|
34
|
+
"@humanwhocodes/momoa": "^3.3.10",
|
|
35
|
+
"@types/node": "^25.9.0",
|
|
36
|
+
"bumpp": "^11.1.0",
|
|
37
|
+
"eslint": "^10.4.0",
|
|
38
|
+
"nano-staged": "^1.0.2",
|
|
39
|
+
"publint": "^0.3.21",
|
|
40
|
+
"simple-git-hooks": "^2.13.1",
|
|
41
|
+
"skills-npm": "^1.1.1",
|
|
42
|
+
"tsdown": "^0.22.0",
|
|
43
|
+
"tsdown-stale-guard": "^0.1.2",
|
|
44
|
+
"tsnapi": "^0.3.3",
|
|
45
|
+
"tsx": "^4.22.2",
|
|
46
|
+
"typescript": "^6.0.3",
|
|
47
|
+
"vite": "^8.0.13",
|
|
48
|
+
"vitest": "^4.1.6"
|
|
49
|
+
},
|
|
50
|
+
"simple-git-hooks": {
|
|
51
|
+
"pre-commit": "pnpm i --frozen-lockfile --ignore-scripts --offline && pnpm run build && npx nano-staged"
|
|
52
|
+
},
|
|
53
|
+
"nano-staged": {
|
|
54
|
+
"*": "eslint --fix"
|
|
55
|
+
},
|
|
56
|
+
"inlinedDependencies": {
|
|
57
|
+
"@humanwhocodes/momoa": "3.3.10"
|
|
58
|
+
},
|
|
59
|
+
"scripts": {
|
|
60
|
+
"build": "tsdown",
|
|
61
|
+
"dev": "tsdown --watch",
|
|
62
|
+
"lint": "eslint",
|
|
63
|
+
"lint:fix": "eslint --fix",
|
|
64
|
+
"release": "bumpp",
|
|
65
|
+
"start": "tsx src/index.ts",
|
|
66
|
+
"test": "pnpm run build && vitest",
|
|
67
|
+
"typecheck": "tsc"
|
|
68
|
+
}
|
|
69
|
+
}
|