-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.67 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
60
61
{
"name": "happy-rusty",
"description": "Porting some excellent design implementations from Rust to JavaScript.",
"author": "[email protected]",
"license": "GPL-3.0",
"version": "1.5.0",
"type": "module",
"source": "src/mod.ts",
"main": "dist/main.cjs",
"module": "dist/main.mjs",
"types": "dist/types.d.ts",
"files": [
"LICENSE",
"README.md",
"README.cn.md",
"package.json",
"docs",
"src",
"dist"
],
"sideEffects": false,
"scripts": {
"check": "pnpm exec tsc --noEmit",
"lint": "pnpm exec eslint .",
"prebuild": "pnpm dlx rimraf dist && pnpm run check && pnpm run lint",
"build": "pnpm exec rollup --config rollup.config.mjs",
"test": "deno test --coverage --clean && deno coverage coverage && deno coverage coverage --lcov --output=coverage/cov_profile.lcov",
"test:html": "deno test --coverage --clean && deno coverage coverage && deno coverage coverage --html",
"predocs": "pnpm dlx rimraf docs",
"docs": "pnpm exec typedoc",
"eg": "deno run -A examples/main.ts",
"prepublishOnly": "pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JiangJie/happy-rusty.git"
},
"keywords": [
"rust",
"enum",
"Option",
"Some",
"None",
"Result",
"Ok",
"Err"
],
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/eslint__js": "^8.42.3",
"eslint": "^9.9.0",
"rollup": "^4.20.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"typedoc": "^0.26.5",
"typedoc-plugin-markdown": "^4.2.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1"
},
"packageManager": "[email protected]"
}