-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 883 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 883 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
{
"name": "semantium",
"version": "2.0.0",
"description": "Build fluent APIs with ease.",
"author": "Magnus Meseck",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/elemental-mind/semantium.git"
},
"homepage": "https://github.com/elemental-mind/semantium#readme",
"keywords": [
"fluent",
"api",
"builder",
"fluent api",
"flow typing"
],
"scripts": {
"dry-update": "tsc",
"patch": "tsc && npm version patch && git push && npm publish",
"release": "tsc && npm version minor && git push && npm publish",
"test": "tsc --noemit && node --experimental-transform-types --disable-warning=ExperimentalWarning test/test.ts"
},
"devDependencies": {
"@types/node": "^22.7.5"
},
"type": "module",
"exports": "./distribution/semantium.js",
"types": "./distribution/semantium.d.ts"
}