-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 987 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 987 Bytes
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
{
"name": "@steemit/steem-uri",
"version": "0.2.1",
"description": "Steem URI parser and encoder",
"license": "MIT",
"main": "./lib/index.cjs",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.cjs",
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
},
"files": [
"lib/*"
],
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "pnpm run clean && tsc -p tsconfig.cjs.json && mv lib/index.js lib/index.cjs && tsc -p tsconfig.esm.json",
"prepublish": "pnpm run build",
"lint": "eslint src",
"clean": "rm -rf lib/",
"test:e2e": "node test/e2e.test.mjs"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@steemit/steem-js": "^1.0.12",
"@types/node": "^20",
"eslint": "^9.0.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.48.0"
}
}