-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.92 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.92 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "runtime-save",
"version": "1.1.1",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": {
"./lib/node.js": false,
"fs": false,
"fs/promises": false,
"path": false,
"os": false
},
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js",
"types": "./dist/index.d.ts"
}
},
"type": "module",
"description": "A JavaScript library to save files with runtime-awareness",
"repository": {
"type": "git",
"url": "git+https://github.com/wyMinLwin/runtime-save.git"
},
"bugs": {
"url": "https://github.com/wyMinLwin/runtime-save/issues"
},
"homepage": "https://github.com/wyMinLwin/runtime-save#readme",
"scripts": {
"build": "pnpm clean && tsc && rollup -c && rimraf dist/types",
"clean": "rimraf dist",
"test": "pnpm build && node test/index.js",
"format": "prettier --write .",
"lint": "eslint src"
},
"keywords": [
"file",
"save",
"runtime",
"javascript",
"typescript"
],
"author": "Wai Yan Min Lwin",
"license": "MIT",
"packageManager": "pnpm@10.11.0",
"devDependencies": {
"@eslint/js": "latest",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.3",
"@types/file-saver": "^2.0.7",
"@types/node": "^24.0.4",
"eslint": "^9.29.0",
"globals": "^16.2.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"rollup": "^4.44.0",
"rollup-plugin-dts": "^6.2.1",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.1"
}
}