-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.34 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.34 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
{
"type": "module",
"name": "@phi-ag/ifc-guid",
"version": "1.1.4",
"license": "MIT",
"description": "Convert IFC GUID",
"repository": {
"type": "git",
"url": "git+https://github.com/phi-ag/ifc-guid.git"
},
"files": [
"dist"
],
"keywords": [
"ifc",
"uuid",
"guid"
],
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"exports": {
".": "./dist/index.js"
},
"scripts": {
"build": "tsc --build",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"test": "vitest --run",
"test:dev": "vitest",
"test:coverage": "vitest --run --coverage src",
"format": "prettier --write \"**/*.{js,ts,json,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{js,ts,json,yml,yaml}\"",
"check": "pnpm format:check && pnpm lint && pnpm typecheck && pnpm test"
},
"dependencies": {
"uuid": ">=10"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@trivago/prettier-plugin-sort-imports": "6.0.2",
"@vitest/coverage-v8": "4.1.5",
"eslint": "10.2.1",
"fast-check": "4.7.0",
"prettier": "3.8.3",
"typescript": "6.0.3",
"typescript-eslint": "8.59.0",
"vitest": "4.1.5"
},
"packageManager": "pnpm@10.33.2+sha512.a90faf6feeab71ad6c6e57f94e0fe1a12f5dcc22cd754db40ae9593eb6a3e0b6b12e3540218bb37ae083404b1f2ce6db2a4121e979829b4aff94b99f49da1cf8"
}