newtil-css 0.2.76 → 0.2.77
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/LICENSE +21 -21
- package/README.md +42 -42
- package/dist/components.css +4 -0
- package/dist/components.js +3 -0
- package/dist/index.d.ts +4 -7
- package/dist/index.js +4 -8
- package/dist/js/n-layout.js +1 -1
- package/dist/style.css +6 -12
- package/dist/utils.css +3 -0
- package/dist/utils.js +3 -0
- package/index.d.ts +4 -7
- package/index.js +4 -8
- package/package.json +64 -53
- package/dist/types/n-bar.d.ts +0 -3
- package/dist/types/n-layout.d.ts +0 -3
package/package.json
CHANGED
|
@@ -1,53 +1,64 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "newtil-css",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"description": "Utility based CSS",
|
|
5
|
-
"main": "index.js",
|
|
6
|
-
"types": "index.d.ts",
|
|
7
|
-
"style": "dist/style.css",
|
|
8
|
-
"type": "module",
|
|
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
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "newtil-css",
|
|
3
|
+
"version": "0.2.77",
|
|
4
|
+
"description": "Utility based CSS",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"types": "index.d.ts",
|
|
7
|
+
"style": "dist/style.css",
|
|
8
|
+
"type": "module",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./index.js",
|
|
12
|
+
"types": "./index.d.ts"
|
|
13
|
+
},
|
|
14
|
+
"./style.css": "./dist/style.css",
|
|
15
|
+
"./utils.css": "./dist/utils.css",
|
|
16
|
+
"./components.css": "./dist/components.css",
|
|
17
|
+
"./package.json": "./package.json"
|
|
18
|
+
},
|
|
19
|
+
"keywords": [
|
|
20
|
+
"css",
|
|
21
|
+
"util css",
|
|
22
|
+
"utility css",
|
|
23
|
+
"css framework"
|
|
24
|
+
],
|
|
25
|
+
"author": "lectureteam",
|
|
26
|
+
"license": "MIT",
|
|
27
|
+
"scripts": {
|
|
28
|
+
"build": "rm -rf ./dist && rollup -c",
|
|
29
|
+
"deploy": "npm run build && npm publish",
|
|
30
|
+
"prepublishOnly": "npm run build",
|
|
31
|
+
"docs:dev": "vitepress dev docs",
|
|
32
|
+
"docs:build": "vitepress build docs",
|
|
33
|
+
"docs:preview": "vitepress preview docs"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
37
|
+
"@rollup/plugin-typescript": "^12.1.2",
|
|
38
|
+
"postcss": "^8.4.33",
|
|
39
|
+
"postcss-import": "^16.1.0",
|
|
40
|
+
"postcss-url": "^10.1.3",
|
|
41
|
+
"rollup": "^4.9.2",
|
|
42
|
+
"rollup-plugin-copy": "^3.5.0",
|
|
43
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
44
|
+
"vitepress": "^0.1.1"
|
|
45
|
+
},
|
|
46
|
+
"directories": {
|
|
47
|
+
"doc": "docs"
|
|
48
|
+
},
|
|
49
|
+
"repository": {
|
|
50
|
+
"type": "git",
|
|
51
|
+
"url": "git+https://github.com/newlecture-corp/newtil-css.git"
|
|
52
|
+
},
|
|
53
|
+
"bugs": {
|
|
54
|
+
"url": "https://github.com/newlecture-corp/newtil-css/issues"
|
|
55
|
+
},
|
|
56
|
+
"homepage": "https://github.com/newlecture-corp/newtil-css#readme",
|
|
57
|
+
"files": [
|
|
58
|
+
"dist",
|
|
59
|
+
"index.js",
|
|
60
|
+
"index.d.ts",
|
|
61
|
+
"README.md",
|
|
62
|
+
"LICENSE"
|
|
63
|
+
]
|
|
64
|
+
}
|
package/dist/types/n-bar.d.ts
DELETED
package/dist/types/n-layout.d.ts
DELETED