lakutata 0.0.4-alpha.21 → 0.0.4-alpha.24
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.bak +1 -0
- package/package.json +4 -55
- package/postpublish.js +0 -3
- package/prepublishOnly.js +0 -3
- package/prepublishOnly1692197284863.log +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"name":"lakutata","version":"0.0.4-alpha.24","description":"An IoC-based universal application framework.","type":"module","exports":{".":{"require":"./build/Lakutata.cjs","import":"./build/Lakutata.js","types":"./build/Lakutata.d.ts"}},"main":"./build/Lakutata.cjs","types":"./build/Lakutata.d.cts","scripts":{"clean":"shx rm -rf ./build","build":"tsup-node --config tsup.config.ts","rebuild":"npm run clean && npm run build","prepare":"npm run compile","compile":"npm run rebuild && shx rm -rf ./build/tests/*","prepublishOnly":"node .prepublish.js","postpublish":"node .postpublish.js","release":"dotenv -- release-it --git.tagExclude='*[-]*'","release:preRelease:beta":"dotenv -- release-it --preRelease=beta","release:preRelease:alpha":"dotenv -- release-it --preRelease=alpha","test":"ts-node src/tests/Test.spec.ts"},"release-it":{"git":{"requireCleanWorkingDir":false,"requireBranch":false,"commitMessage":"chore: release v${version}","push":false},"github":{"release":true,"autoGenerate":true}},"dependencies":{"tslib":"^2.6.1"},"devDependencies":{"@types/convert-units":"^2.3.6","@types/crypto-js":"^4.1.1","@types/is-glob":"^4.0.2","@types/node":"^18.17.0","@types/object-hash":"^3.0.3","@types/randomstring":"^1.1.8","@types/sort-array":"^4.1.0","@typescript-eslint/eslint-plugin":"^6.4.0","@typescript-eslint/parser":"^6.4.0","browserify-cipher":"^1.0.1","camel-case":"^4.1.2","convert-units":"^2.3.4","crypto-api-v1":"^1.0.0","crypto-js":"^4.1.1","dotenv-cli":"^7.2.1","eslint":"^8.47.0","extra-promise":"^6.0.8","fast-glob":"^3.3.1","is-glob":"^4.0.3","joi":"^17.9.2","moment-timezone":"^0.5.43","object-hash":"^3.0.0","patrun":"^7.2.5","pino":"^8.15.0","pino-pretty":"^10.2.0","pupa":"^3.1.0","randomstring":"^1.3.0","reflect-metadata":"^0.1.13","release-it":"^16.1.5","shx":"^0.3.4","sm-crypto-v2":"^1.7.0","sort-array":"^4.1.5","sort-keys":"^5.0.0","terser":"^5.19.2","ts-node":"^10.9.1","tsup":"^7.2.0","typescript":"^5.1.6"},"engines":{"node":">=18"},"author":"alex.ma","license":"MIT","publishConfig":{"access":"public","registry":"https://registry.npmjs.org/"},"repository":{"type":"git","url":"https://github.com/lakutata/lakutata.git"},"homepage":"https://lakutata.com","bugs":{"url":"https://github.com/lakutata/lakutata/issues","email":"myq1991@gmail.com"},"keywords":["lakutata","framework","typescript","esm","cjs","ioc","di"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lakutata",
|
|
3
|
-
"version": "0.0.4-alpha.
|
|
3
|
+
"version": "0.0.4-alpha.24",
|
|
4
4
|
"description": "An IoC-based universal application framework.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -18,67 +18,16 @@
|
|
|
18
18
|
"rebuild": "npm run clean && npm run build",
|
|
19
19
|
"prepare": "npm run compile",
|
|
20
20
|
"compile": "npm run rebuild && shx rm -rf ./build/tests/*",
|
|
21
|
-
"prepublishOnly": "node
|
|
22
|
-
"postpublish": "node postpublish.js",
|
|
21
|
+
"prepublishOnly": "node .prepublish.js",
|
|
22
|
+
"postpublish": "node .postpublish.js",
|
|
23
23
|
"release": "dotenv -- release-it --git.tagExclude='*[-]*'",
|
|
24
24
|
"release:preRelease:beta": "dotenv -- release-it --preRelease=beta",
|
|
25
25
|
"release:preRelease:alpha": "dotenv -- release-it --preRelease=alpha",
|
|
26
26
|
"test": "ts-node src/tests/Test.spec.ts"
|
|
27
27
|
},
|
|
28
|
-
"release-it": {
|
|
29
|
-
"git": {
|
|
30
|
-
"requireCleanWorkingDir": false,
|
|
31
|
-
"requireBranch": false,
|
|
32
|
-
"commitMessage": "chore: release v${version}",
|
|
33
|
-
"push": false
|
|
34
|
-
},
|
|
35
|
-
"github": {
|
|
36
|
-
"release": true,
|
|
37
|
-
"autoGenerate": true
|
|
38
|
-
}
|
|
39
|
-
},
|
|
40
28
|
"dependencies": {
|
|
41
29
|
"tslib": "^2.6.1"
|
|
42
30
|
},
|
|
43
|
-
"devDependencies": {
|
|
44
|
-
"@types/convert-units": "^2.3.6",
|
|
45
|
-
"@types/crypto-js": "^4.1.1",
|
|
46
|
-
"@types/is-glob": "^4.0.2",
|
|
47
|
-
"@types/node": "^18.17.0",
|
|
48
|
-
"@types/object-hash": "^3.0.3",
|
|
49
|
-
"@types/randomstring": "^1.1.8",
|
|
50
|
-
"@types/sort-array": "^4.1.0",
|
|
51
|
-
"@typescript-eslint/eslint-plugin": "^6.4.0",
|
|
52
|
-
"@typescript-eslint/parser": "^6.4.0",
|
|
53
|
-
"browserify-cipher": "^1.0.1",
|
|
54
|
-
"camel-case": "^4.1.2",
|
|
55
|
-
"convert-units": "^2.3.4",
|
|
56
|
-
"crypto-api-v1": "^1.0.0",
|
|
57
|
-
"crypto-js": "^4.1.1",
|
|
58
|
-
"dotenv-cli": "^7.2.1",
|
|
59
|
-
"eslint": "^8.47.0",
|
|
60
|
-
"extra-promise": "^6.0.8",
|
|
61
|
-
"fast-glob": "^3.3.1",
|
|
62
|
-
"is-glob": "^4.0.3",
|
|
63
|
-
"joi": "^17.9.2",
|
|
64
|
-
"moment-timezone": "^0.5.43",
|
|
65
|
-
"object-hash": "^3.0.0",
|
|
66
|
-
"patrun": "^7.2.5",
|
|
67
|
-
"pino": "^8.15.0",
|
|
68
|
-
"pino-pretty": "^10.2.0",
|
|
69
|
-
"pupa": "^3.1.0",
|
|
70
|
-
"randomstring": "^1.3.0",
|
|
71
|
-
"reflect-metadata": "^0.1.13",
|
|
72
|
-
"release-it": "^16.1.5",
|
|
73
|
-
"shx": "^0.3.4",
|
|
74
|
-
"sm-crypto-v2": "^1.7.0",
|
|
75
|
-
"sort-array": "^4.1.5",
|
|
76
|
-
"sort-keys": "^5.0.0",
|
|
77
|
-
"terser": "^5.19.2",
|
|
78
|
-
"ts-node": "^10.9.1",
|
|
79
|
-
"tsup": "^7.2.0",
|
|
80
|
-
"typescript": "^5.1.6"
|
|
81
|
-
},
|
|
82
31
|
"engines": {
|
|
83
32
|
"node": ">=18"
|
|
84
33
|
},
|
|
@@ -106,4 +55,4 @@
|
|
|
106
55
|
"ioc",
|
|
107
56
|
"di"
|
|
108
57
|
]
|
|
109
|
-
}
|
|
58
|
+
}
|
package/postpublish.js
DELETED
package/prepublishOnly.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
prepublishOnly
|