-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·67 lines (67 loc) · 2.21 KB
/
package.json
File metadata and controls
executable file
·67 lines (67 loc) · 2.21 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
62
63
64
65
66
67
{
"name": "@aegis-framework/artemis",
"version": "0.5.3",
"description": "Aegis Framework Javascript Library",
"type": "module",
"main": "./dist/artemis.js",
"module": "./dist/artemis.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/artemis.js",
"default": "./dist/artemis.js"
},
"./browser": {
"types": "./dist/types/index.d.ts",
"import": "./dist/artemis.browser.js",
"default": "./dist/artemis.browser.js"
}
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/AegisFramework/Artemis.git"
},
"bugs": {
"url": "https://github.com/AegisFramework/Artemis/issues"
},
"homepage": "https://aegisframework.com/",
"author": "Diana Islas Ocampo <dev@hyuchia.com>",
"license": "MIT",
"keywords": [
"artemis",
"dom",
"javascript",
"typescript",
"library"
],
"scripts": {
"build": "bun run clean && bun run lint && bun run check && bun run build:module && bun run build:legacy && bun run build:types",
"build:module": "bun build ./src/index.ts --target browser --format esm --outdir ./dist --sourcemap=linked --minify && mv ./dist/index.js ./dist/artemis.js && mv ./dist/index.js.map ./dist/artemis.js.map && sed -i 's/index.js.map/artemis.js.map/' ./dist/artemis.js",
"build:legacy": "bun build ./src/browser.ts --target browser --format esm --outdir ./dist --sourcemap=linked --minify && mv ./dist/browser.js ./dist/artemis.browser.js && mv ./dist/browser.js.map ./dist/artemis.browser.js.map && sed -i 's/browser.js.map/artemis.browser.js.map/' ./dist/artemis.browser.js",
"build:types": "tsc --emitDeclarationOnly --declarationDir ./dist/types",
"check": "tsc --noEmit",
"lint": "eslint ./src/**/*.ts",
"clean": "rm -rf dist",
"test": "bun test/index.html"
},
"devDependencies": {
"@babel/eslint-parser": "^7.28.5",
"@eslint/js": "^9.39.2",
"@typescript-eslint/eslint-plugin": "^8.50.0",
"@typescript-eslint/parser": "^8.50.0",
"bun": "^1.3.5",
"eslint": "^9.39.2",
"http-server": "^14.1.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.0"
},
"files": [
"dist/",
"LICENSE",
"README.md",
"package.json"
],
"browserslist": "> 0.5%, last 2 versions, not dead"
}