-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.17 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
{
"name": "@dropecho/ds",
"version": "1.8.0",
"description": "A set of data structures for games.",
"author": "vantreeseba <[email protected]>",
"repository": "github:dropecho/ds",
"files": [
"dist/js/**/*"
],
"publishConfig": {
"access": "public"
},
"license": "MIT",
"scripts": {
"install": "lix download",
"build": "npm run build:code",
"build:code": "haxe build.hxml",
"build:docs": "haxelib run dox -o docs/docs -i artifacts/docs.xml --toplevel-package dropecho.ds",
"test": "haxelib run dropecho.testing"
},
"type": "module",
"main": "./dist/js/cjs/index.cjs",
"exports": {
".": {
"require": "./dist/js/cjs/index.cjs",
"import": "./dist/js/esm/index.js"
}
},
"devDependencies": {
"lix": "^15.12.0",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"semantic-release": "^19.0.5",
"semantic-release-haxelib": "^1.1.0"
}
}