@domphy/core 0.1.1 → 0.1.3
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/README.md +25 -40
- package/dist/core.global.js +1 -1
- package/dist/core.global.js.map +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +28 -3
- package/dist/index.d.ts +28 -3
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +44 -44
package/package.json
CHANGED
|
@@ -1,44 +1,44 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@domphy/core",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Domphy Core UI Framework",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"exports": {
|
|
7
|
-
".": {
|
|
8
|
-
"types": "./dist/index.d.ts",
|
|
9
|
-
"import": "./dist/index.js",
|
|
10
|
-
"require": "./dist/index.cjs"
|
|
11
|
-
}
|
|
12
|
-
},
|
|
13
|
-
"scripts": {
|
|
14
|
-
"build": "tsup",
|
|
15
|
-
"dev": "tsup --watch",
|
|
16
|
-
"pack": "tsup && npm pack",
|
|
17
|
-
"prepublishOnly": "npm run build",
|
|
18
|
-
"test": "vitest run",
|
|
19
|
-
"test:watch": "vitest"
|
|
20
|
-
},
|
|
21
|
-
"keywords": [
|
|
22
|
-
"domphy",
|
|
23
|
-
"core"
|
|
24
|
-
],
|
|
25
|
-
"author": "Huu Khanh Nguyen",
|
|
26
|
-
"license": "MIT",
|
|
27
|
-
"repository": {
|
|
28
|
-
"type": "git",
|
|
29
|
-
"url": "https://github.com/domphy/domphy.git",
|
|
30
|
-
"directory": "packages/core"
|
|
31
|
-
},
|
|
32
|
-
"devDependencies": {
|
|
33
|
-
"csstype": "^3.2.3",
|
|
34
|
-
"tsup": "^8.5.0",
|
|
35
|
-
"typescript": "^5.8.3",
|
|
36
|
-
"vitest": "^4.0.18"
|
|
37
|
-
},
|
|
38
|
-
"files": [
|
|
39
|
-
"dist",
|
|
40
|
-
"README.md"
|
|
41
|
-
],
|
|
42
|
-
"unpkg": "dist/core.global.js",
|
|
43
|
-
"jsdelivr": "dist/core.global.js"
|
|
44
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@domphy/core",
|
|
3
|
+
"version": "0.1.3",
|
|
4
|
+
"description": "Domphy Core UI Framework",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": {
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"import": "./dist/index.js",
|
|
10
|
+
"require": "./dist/index.cjs"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"scripts": {
|
|
14
|
+
"build": "tsup",
|
|
15
|
+
"dev": "tsup --watch",
|
|
16
|
+
"pack": "tsup && npm pack",
|
|
17
|
+
"prepublishOnly": "npm run build",
|
|
18
|
+
"test": "vitest run",
|
|
19
|
+
"test:watch": "vitest"
|
|
20
|
+
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"domphy",
|
|
23
|
+
"core"
|
|
24
|
+
],
|
|
25
|
+
"author": "Huu Khanh Nguyen",
|
|
26
|
+
"license": "MIT",
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "https://github.com/domphy/domphy.git",
|
|
30
|
+
"directory": "packages/core"
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"csstype": "^3.2.3",
|
|
34
|
+
"tsup": "^8.5.0",
|
|
35
|
+
"typescript": "^5.8.3",
|
|
36
|
+
"vitest": "^4.0.18"
|
|
37
|
+
},
|
|
38
|
+
"files": [
|
|
39
|
+
"dist",
|
|
40
|
+
"README.md"
|
|
41
|
+
],
|
|
42
|
+
"unpkg": "dist/core.global.js",
|
|
43
|
+
"jsdelivr": "dist/core.global.js"
|
|
44
|
+
}
|