-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
80 lines (80 loc) · 1.77 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@svgr-rs/core",
"version": "0.0.13",
"main": "index.js",
"types": "index.d.ts",
"author": "SyMind <[email protected]>",
"napi": {
"name": "svgr-rs",
"triples": {
"defaults": false,
"additional": [
"aarch64-apple-darwin",
"aarch64-pc-windows-msvc",
"x86_64-apple-darwin",
"x86_64-pc-windows-msvc",
"x86_64-unknown-linux-gnu",
"universal-apple-darwin"
]
}
},
"license": "MIT",
"devDependencies": {
"@ava/typescript": "^4.1.0",
"@napi-rs/cli": "^2.15.2",
"@types/node": "^18.15.11",
"ava": "^5.1.1",
"typescript": "^5.0.4"
},
"ava": {
"timeout": "3m",
"typescript": {
"rewritePaths": {
"__tests__/": "dist/"
},
"compile": "tsc"
}
},
"engines": {
"node": ">= 10"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --cargo-name binding --platform --release --js binding.js --dts binding.d.ts",
"build:debug": "napi build --cargo-name binding --platform --js binding.js --dts binding.d.ts",
"prepublishOnly": "napi prepublish -t npm",
"test": "ava",
"universal": "napi universal",
"version": "napi version"
},
"packageManager": "[email protected]",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"keywords": [
"svgr",
"svg",
"react",
"core",
"api",
"swc"
],
"homepage": "https://github.com/SyMind/svgr-rs",
"repository": {
"type": "git",
"url": "git+https://github.com/SyMind/svgr-rs.git"
},
"bugs": {
"url": "https://github.com/SyMind/svgr-rs/issues"
},
"files": [
"index.js",
"index.d.ts",
"binding.js",
"binding.d.ts",
"package.json",
"README.md",
"LICENSE"
]
}