-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.2 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
{
"name": "uuid-to-int",
"version": "0.0.0-dev",
"description": "Converts UUID (GUID) to integer",
"license": "MIT",
"type": "module",
"main": "./dist/uuid-to-int.cjs",
"module": "./dist/uuid-to-int.mjs",
"types": "./dist/index.d.ts",
"repository": "https://github.com/unlight/uuid-to-int.git",
"keywords": [
"uuid",
"guid",
"integer",
"uuid-convertor"
],
"exports": {
".": {
"import": "./dist/uuid-to-int.mjs",
"require": "./dist/uuid-to-int.cjs"
}
},
"scripts": {
"start": "node --experimental-transform-types src/index.ts",
"test": "npm run test:r",
"test:r": "node --experimental-transform-types --test src/*.spec.ts",
"test:w": "node --experimental-transform-types --test --watch src/*.spec.ts",
"test:cov": "node --experimental-transform-types --test --experimental-test-coverage src/*.spec.ts",
"build": "sh Taskfile buildMicrobundle4"
},
"devDependencies": {
"@types/node": "^22.10.5",
"microbundle": "^0.15.1",
"prettier": "^3.4.2",
"conventional-changelog-conventionalcommits": "^8.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"semantic-release": "^24.2.1"
}
}