@signageos/lib-bundler 17.0.0-master.3227
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@signageos/lib-bundler",
|
|
3
|
+
"version": "17.0.0-master.3227",
|
|
4
|
+
"main": "./dist/index.cjs",
|
|
5
|
+
"author": "",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"description": "Esbuild and swc bundler for bundling code for display devices (such as core apps or applets)",
|
|
8
|
+
"type": "commonjs",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"default": "./dist/index.cjs",
|
|
12
|
+
"require": "./dist/index.cjs",
|
|
13
|
+
"import": "./dist/index.mjs",
|
|
14
|
+
"types": "./dist/index.d.ts"
|
|
15
|
+
},
|
|
16
|
+
"./alias/noop": {
|
|
17
|
+
"default": "./dist/alias/noop.cjs",
|
|
18
|
+
"types": "./dist/alias/noop.d.ts"
|
|
19
|
+
},
|
|
20
|
+
"./alias/path": {
|
|
21
|
+
"default": "./dist/alias/path.cjs",
|
|
22
|
+
"types": "./dist/alias/path.d.ts"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"scripts": {
|
|
26
|
+
"clean-build": "npm run build",
|
|
27
|
+
"build": "node build.mjs",
|
|
28
|
+
"test": "NODE_ENV=test mocha",
|
|
29
|
+
"test:coverage": "c8 npm run test",
|
|
30
|
+
"check": "npm run depcheck && ../../tools/check-deps",
|
|
31
|
+
"check:forbidden-dependencies": "node ../../tools/check-forbidden-dependencies",
|
|
32
|
+
"depcheck": "depcheck --config .depcheckrc.json"
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {},
|
|
35
|
+
"peerDependencies": {
|
|
36
|
+
"@swc/core": "^1.6.5",
|
|
37
|
+
"esbuild": "^0.21.5"
|
|
38
|
+
},
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"@signageos/codestyle": "0.3.0",
|
|
41
|
+
"@types/node": "20.14.9",
|
|
42
|
+
"depcheck": "1.4.7",
|
|
43
|
+
"mocha": "10.5.2",
|
|
44
|
+
"prettier": "3.3.2",
|
|
45
|
+
"should": "13.2.3",
|
|
46
|
+
"sinon": "18.0.0",
|
|
47
|
+
"ts-node": "10.9.2",
|
|
48
|
+
"zx": "8.1.4"
|
|
49
|
+
},
|
|
50
|
+
"files": [
|
|
51
|
+
"tools",
|
|
52
|
+
"package.json"
|
|
53
|
+
],
|
|
54
|
+
"publishConfig": {
|
|
55
|
+
"registry": "https://registry.npmjs.org/",
|
|
56
|
+
"access": "public"
|
|
57
|
+
}
|
|
58
|
+
}
|