-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.33 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
{
"name": "@equal/ts-rust-types",
"version": "1.0.0",
"description": "Mimic Rust's types",
"type": "module",
"sideEffects": false,
"types": "./lib/types/index.d.ts",
"module": "./lib/esm/index.js",
"main": "./lib/cjs/index.js",
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"module": "./lib/esm/index.js",
"main": "./lib/cjs/index.js"
}
},
"scripts": {
"build": "NODE_ENV=production rollup -c --environment BUILD:production",
"build:watch": "rollup -c -w",
"test": "jest"
},
"keywords": [
"rust",
"rust-types",
"functional",
"fp"
],
"author": "Matheus Albino <matheusalbino@users.noreply.github.com>",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.2",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"rollup": "^2.77.2",
"rollup-plugin-typescript2": "^0.32.1",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"files": [
"lib"
]
}