-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.53 KB
/
package.json
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
{
"name": "arcdash",
"type": "module",
"version": "0.0.51",
"private": false,
"description": "Business Function Library - Modern, Simple, Typed, and Powerful",
"author": "azir-11",
"license": "MIT",
"repository": {
"url": "https://github.com/Azir-11/arcdash"
},
"keywords": [
"arcdash"
],
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs"
},
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test": "vitest",
"build": "pnpm tsc --noEmit && pnpm rollup -c",
"dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"typecheck": "vue-tsc --noEmit --skipLibCheck",
"cleanup": "soy cleanup",
"commit": "soy git-commit -l=zh-cn",
"lint": "eslint . --fix",
"release": "soy release",
"update-pkg": "soy update-pkg"
},
"devDependencies": {
"@antfu/eslint-config": "^3.3.2",
"@rollup/plugin-typescript": "^11.1.6",
"@soybeanjs/cli": "^1.1.0",
"@types/node": "^22.5.4",
"esbuild": "^0.23.1",
"eslint": "^9.9.1",
"eslint-plugin-antfu": "^2.5.0",
"npm-check-updates": "^17.1.1",
"rollup": "^4.21.2",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-node-externals": "^7.1.3",
"typescript": "^5.5.4",
"vitepress": "^1.3.4",
"vitest": "^2.0.5"
}
}