-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 951 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 951 Bytes
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
{
"name": "@acrodata/gradient-parser",
"version": "1.0.0",
"description": "CSS gradient parser",
"publishConfig": {
"access": "public"
},
"types": "dist/index.d.ts",
"main": "dist/index.js",
"files": [
"dist"
],
"keywords": [
"gradient-parser",
"css-gradient-parser",
"typescript"
],
"scripts": {
"build": "npx tsc -p tsconfig.json",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acrodata/gradient-parser.git"
},
"author": "nzbin<nzb329@163.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/acrodata/gradient-parser/issues"
},
"homepage": "https://github.com/acrodata/gradient-parser#readme",
"dependencies": {
"tslib": "^2.3.0"
},
"devDependencies": {
"prettier": "^3.8.0",
"rimraf": "^6.0.0",
"typescript": "~5.9.0"
}
}