-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.59 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
{
"name": "@eik/node-client",
"version": "1.2.1",
"description": "Utilities for working with assets and import maps on an Eik server",
"type": "module",
"main": "./dist/index.cjs",
"types": "./types/index.d.ts",
"exports": {
"types": "./types/index.d.ts",
"import": "./src/index.js",
"require": "./dist/index.cjs"
},
"files": [
"CHANGELOG.md",
"package.json",
"LICENSE",
"dist",
"src",
"types"
],
"scripts": {
"build": "rollup -c",
"clean": "rimraf .tap dist node_modules types",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "tap --disable-coverage --allow-empty-coverage",
"types": "run-s types:module types:test",
"types:module": "tsc",
"types:test": "tsc --project tsconfig.test.json",
"prepare": "npm run -s build"
},
"repository": {
"type": "git",
"url": "git@github.com:eik-lib/node-client.git"
},
"keywords": [
"eik"
],
"author": "Finn.no",
"license": "MIT",
"bugs": {
"url": "https://github.com/eik-lib/node-client/issues"
},
"homepage": "https://github.com/eik-lib/node-client#readme",
"dependencies": {
"@eik/common": "4.1.1",
"abslog": "2.4.4",
"undici": "5.28.4"
},
"devDependencies": {
"@eik/eslint-config": "1.0.4",
"@eik/prettier-config": "1.0.1",
"@eik/semantic-release-config": "1.0.0",
"@eik/typescript-config": "1.0.0",
"eslint": "9.13.0",
"npm-run-all2": "5.0.2",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"rollup": "4.22.5",
"semantic-release": "24.0.0",
"tap": "21.0.1",
"typescript": "5.5.4"
}
}