@opensea/seadn 1.0.1 → 1.0.2
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 +15 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -0
- package/package.json +5 -2
package/README.md
ADDED
package/dist/index.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA,MAAM,MAAM,YAAY,GAAG;IACzB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,eAAO,MAAM,WAAW,UACf,MAAM,GAAG,GAAG,0BACS,YAAY,KACvC,MAmBF,CAAC;AAEF,eAAO,MAAM,iBAAiB,UAAW,MAAM,GAAG,GAAG,YAcpD,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opensea/seadn",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Javascript SDK to work with SeaDN",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "OpenSea Developers",
|
|
@@ -17,15 +17,18 @@
|
|
|
17
17
|
"scripts": {
|
|
18
18
|
"build": "microbundle",
|
|
19
19
|
"check-types": "tsc --noEmit",
|
|
20
|
+
"lint": "concurrently \"npm run check-types\" \"npm run prettier:check\" \"npm run prettier:package.json:check\"",
|
|
20
21
|
"prepare": "husky install",
|
|
21
22
|
"prettier:check": "prettier --check .",
|
|
22
|
-
"prettier:check:package.json": "prettier-package-json --list-different",
|
|
23
23
|
"prettier:fix": "prettier --write .",
|
|
24
|
+
"prettier:package.json:check": "prettier-package-json --list-different",
|
|
24
25
|
"test": "vitest"
|
|
25
26
|
},
|
|
26
27
|
"sideEffects": false,
|
|
27
28
|
"types": "./dist/index.d.ts",
|
|
28
29
|
"devDependencies": {
|
|
30
|
+
"@vitest/coverage-c8": "^0.29.1",
|
|
31
|
+
"concurrently": "^7.6.0",
|
|
29
32
|
"esbuild": "^0.17.10",
|
|
30
33
|
"husky": "^8.0.3",
|
|
31
34
|
"lint-staged": "^13.1.2",
|