-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.69 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@microbit/microbit-universal-hex",
"version": "0.2.2",
"description": "Create micro:bit universal hexes.",
"homepage": "https://microbit-foundation.github.io/microbit-universal-hex/",
"keywords": [
"microbit",
"universal-hex",
"universal hex",
"uh"
],
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"typings": "./dist/esm/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.js",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.js",
"default": "./dist/cjs/index.js"
}
}
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/microbit-foundation/microbit-universal-hex"
},
"author": "Micro:bit Educational Foundation <package-help@microbit.org>",
"license": "MIT",
"engines": {
"node": ">=8.5",
"npm": ">=9.0",
"yarn": "^1.0"
},
"allowScripts": {
"esbuild": true,
"fsevents": true
},
"scripts": {
"build:esm": "tsc -p tsconfig.json && echo '{\"type\": \"module\"}' > dist/esm/package.json",
"build:cjs": "tsc -p tsconfig.cjs.json && echo '{\"type\": \"commonjs\"}' > dist/cjs/package.json",
"build": "npm run build:esm && npm run build:cjs",
"lint": "eslint . --max-warnings 0",
"ci": "npm run build && npm run test && npm run lint && prettier --check .",
"test": "vitest",
"docs": "typedoc --options typedoc.json"
},
"devDependencies": {
"@microbit/eslint-config": "^0.2.1",
"@types/node": "^22.13.1",
"eslint": "^10.0.0",
"prettier": "3.2.5",
"typedoc": "0.27.6",
"typescript": "^5.7.3",
"vitest": "^4.1.11"
}
}