-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·43 lines (43 loc) · 1.34 KB
/
package.json
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
{
"name": "polyclass",
"type": "module",
"source": "src/foo.js",
"exports": {
"require": "./dist/full/cjs/polyclass-full.cjs",
"default": "./dist/full/esm/polyclass-full.js"
},
"browser": "dist/polyclass.full.js",
"version": "0.1.4",
"scripts": {
"build": "rollup -c"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"rollup": "^4.9.6",
"rollup-plugin-concat": "^1.0.3"
},
"description": "JavaScript library designed to provide dynamic and real-time manipulation of CSS stylesheets. Whether you're looking to animate elements, adjust styles on-the-fly, or create responsive designs without the overhead of traditional CSS",
"files": [
"src/",
"dist/"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Strangemother/polyclass.js.git"
},
"keywords": [
"automatic-css",
"css-class",
"pre-generated-classes",
"just-in-time css",
"declarative css"
],
"author": "Jay Jagpal",
"license": "MIT",
"bugs": {
"url": "https://github.com/Strangemother/polyclass.js/issues"
},
"homepage": "https://github.com/Strangemother/polyclass.js#readme"
}