-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
30 lines (30 loc) · 850 Bytes
/
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
{
"name": "rescript-heroicons",
"version": "0.0.2",
"description": "ReScript binding to Heroicons",
"author": "Nyi Nyi Than <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/nyinyithann/rescript-heroicons.git"
},
"license": "MIT",
"keywords": [
"rescript",
"heroicons",
"tailwindCSS",
"tailwind"
],
"devDependencies": {
"@heroicons/react": "^1.0.1",
"@rescript/react": "^0.10.3",
"rescript": "^9.1.2"
},
"scripts": {
"build": "rescript",
"clean": "rescript clean",
"watch": "rescript build -w",
"iv": "npm --no-git-tag-version version patch",
"verdaccio-publish": "npm run iv & npm publish --registry http://localhost:4873",
"verdaccio-unpublish": "npm unpublish --force --registry http://localhost:4873/ rescript-heroicons"
}
}